NestedScrollConnection constructor

const NestedScrollConnection({
  1. Key? key,
  2. NestedScrollListener? onPreScroll,
  3. NestedScrollListener? onPostScroll,
  4. NestedScrollListener? onFling,
  5. NestedScrollListener? onBouncing,
  6. NestedScrollPredicate? predicate,
  7. NestedScrollConnectionPropagation propagation = NestedScrollConnectionPropagation.directional,
  8. required Widget child,
})

Implementation

const NestedScrollConnection({
  super.key,
  this.onPreScroll,
  this.onPostScroll,
  this.onFling,
  this.onBouncing,
  this.predicate,
  this.propagation = NestedScrollConnectionPropagation.directional,
  required this.child,
});