TableViewHorizontalDividerStyle constructor

const TableViewHorizontalDividerStyle({
  1. bool enabled = true,
  2. Color? color,
  3. double? thickness,
  4. double? space,
  5. double? indent,
  6. double? endIndent,
})

Implementation

const TableViewHorizontalDividerStyle({
  this.enabled = true,
  super.color,
  super.thickness,
  super.space,
  super.indent,
  super.endIndent,
})  : assert(thickness == null || thickness >= 0),
      assert(space == null || space >= 0),
      assert(indent == null || indent >= 0),
      assert(endIndent == null || endIndent >= 0);