EdgeNotifierScrollController constructor

EdgeNotifierScrollController({
  1. dynamic onEndReached()?,
  2. dynamic onStartReached()?,
  3. Duration? delayDuration,
  4. String? debugLabel,
  5. double initialScrollOffset = 0,
  6. bool keepScrollOffset = true,
})

Implementation

EdgeNotifierScrollController({
  this.onEndReached,
  this.onStartReached,
  this.delayDuration,
  String? debugLabel,
  double initialScrollOffset = 0,
  bool keepScrollOffset = true,
}) : super(
        debugLabel: debugLabel,
        initialScrollOffset: initialScrollOffset,
        keepScrollOffset: keepScrollOffset,
      ) {
  super.addListener(_notifyOnEndReached);
}