CustomScrollBar constructor

const CustomScrollBar({
  1. Key? key,
  2. required ScrollController controller,
  3. ScrollbarStyle? scrollbarStyle,
  4. required Widget child,
  5. ScrollNotificationPredicate notificationPredicate = defaultScrollNotificationPredicate,
})

Implementation

const CustomScrollBar({
  Key? key,
  required this.controller,
  this.scrollbarStyle,
  required this.child,
  this.notificationPredicate = defaultScrollNotificationPredicate,
}) : super(key: key);