AutoPlatformScrollbarController constructor

AutoPlatformScrollbarController({
  1. required TickerProvider vsync,
  2. required TransformScrollbarWidgetInterface controlInterface,
  3. double? thickness,
  4. Radius? radius,
  5. bool? trackVisibility,
  6. bool? interactive,
  7. 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,
        ),
      );