FResizableDividerThumbStyle constructor

FResizableDividerThumbStyle({
  1. required BoxDecoration decoration,
  2. required Color foregroundColor,
  3. required double height,
  4. required double width,
})

Implementation

FResizableDividerThumbStyle({
  required this.decoration,
  required this.foregroundColor,
  required this.height,
  required this.width,
}) : assert(0 < height, 'height ($height) must be > 0'),
     assert(0 < width, 'width ($width) must be > 0');