DividerThemeData constructor

const DividerThemeData({
  1. Color? color,
  2. double? space,
  3. double? thickness,
  4. double? indent,
  5. double? endIndent,
  6. BorderRadiusGeometry? radius,
})

Creates a theme that can be used for DividerTheme or ThemeData.dividerTheme.

Implementation

const DividerThemeData({
  this.color,
  this.space,
  this.thickness,
  this.indent,
  this.endIndent,
  this.radius,
});