Scrollbar constructor

const Scrollbar({
  1. Key? key,
  2. required Widget child,
  3. ScrollController? controller,
  4. bool? thumbVisibility,
  5. bool? trackVisibility,
  6. double? thickness,
  7. Radius? radius,
  8. ScrollNotificationPredicate? notificationPredicate,
  9. bool? interactive,
  10. ScrollbarOrientation? scrollbarOrientation,
})

Implementation

const Scrollbar({
  super.key,
  required this.child,
  this.controller,
  this.thumbVisibility,
  this.trackVisibility,
  this.thickness,
  this.radius,
  this.notificationPredicate,
  this.interactive,
  this.scrollbarOrientation,
});