FResizableDividerThumbStyle constructor

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

Implementation

FResizableDividerThumbStyle({
  required this.backgroundColor,
  required this.foregroundColor,
  required this.height,
  required this.width,
})  : assert(0 < height, 'Height should be positive, but is $height.'),
      assert(0 < width, 'Width should be positive, but is $width.');