ScrollNotificationListener constructor

const ScrollNotificationListener({
  1. required NativeScrollGestureDispatcher scrollGestureDispatcher,
  2. required Widget child,
  3. bool isHorizontal = false,
  4. required RenderViewModel viewModel,
  5. Key? key,
})

Implementation

const ScrollNotificationListener({
  required this.scrollGestureDispatcher,
  required this.child,
  this.isHorizontal = false,
  required this.viewModel,
  Key? key,
}) : super(key: key);