FResizableDividerThumbStyle constructor
FResizableDividerThumbStyle({})
Creates a FResizableDividerThumbStyle.
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.');