DividerTheme constructor

const DividerTheme({
  1. Color? color,
  2. double? height,
  3. double? thickness,
  4. double? indent,
  5. double? endIndent,
  6. EdgeInsetsGeometry? padding,
})

Creates a DividerTheme.

Implementation

const DividerTheme({
  this.color,
  this.height,
  this.thickness,
  this.indent,
  this.endIndent,
  this.padding,
});