FResizableDividerThumbStyle constructor
FResizableDividerThumbStyle({
- required BoxDecoration decoration,
- required Color foregroundColor,
- required double height,
- required double width,
Creates a FResizableDividerThumbStyle.
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');