didEndScroll method
Called by beginActivity to report when an activity has ended.
This also saves the scroll offset using saveScrollOffset.
Implementation
@override
void didEndScroll() {
super.didEndScroll();
context.notificationContext?.dispatchNotification(
NestedScrollEndNotification(
metrics: copyWith(),
context: context.notificationContext,
target: this,
),
);
}