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, 'The width is $width, but it should be in the range "0 < width".');