SafeScrollbar constructor

const SafeScrollbar({
  1. Key? key,
  2. required Widget child,
  3. bool top = true,
  4. bool bottom = true,
  5. BorderRadius? borderRadius,
  6. ScrollController? controller,
})

Implementation

const SafeScrollbar({
  super.key,
  required this.child,
  this.top = true,
  this.bottom = true,
  this.borderRadius,
  this.controller,
});