DividerThemeData constructor

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

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,
});