EdgeNotifierScrollController constructor
EdgeNotifierScrollController({})
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);
}