dispatchScrollUpdateNotification method

void dispatchScrollUpdateNotification(
  1. ScrollMetrics metrics,
  2. BuildContext context,
  3. double scrollDelta
)

Dispatch a ScrollUpdateNotification with the given metrics and scroll delta.

Implementation

void dispatchScrollUpdateNotification(
  ScrollMetrics metrics,
  BuildContext context,
  double scrollDelta,
) {
  ScrollUpdateNotification(
    metrics: metrics,
    context: context,
    scrollDelta: scrollDelta,
  ).dispatch(context);
}