FDividerStyle constructor

FDividerStyle({
  1. required Color color,
  2. required EdgeInsetsGeometry padding,
  3. double width = 1,
})

Creates a FDividerStyle.

Implementation

FDividerStyle({required this.color, required this.padding, this.width = 1})
  : assert(0 < width, 'width ($width) must be > 0');