AutoPlatformScrollbarController constructor
AutoPlatformScrollbarController({
- required TickerProvider vsync,
- required TransformScrollbarWidgetInterface controlInterface,
- double? thickness,
- Radius? radius,
- bool? trackVisibility,
- bool? interactive,
- bool? thumbVisibility,
Implementation
AutoPlatformScrollbarController({
required TickerProvider vsync,
required TransformScrollbarWidgetInterface controlInterface,
double? thickness,
Radius? radius,
bool? trackVisibility,
bool? interactive,
bool? thumbVisibility,
}) : super(
realController: getPlatformScrollbarController(
vsync: vsync,
controlInterface: controlInterface,
thickness: thickness,
radius: radius,
trackVisibility: trackVisibility,
interactive: interactive,
thumbVisibility: thumbVisibility,
),
);