postNotification method

bool postNotification(
  1. ScrollNotification notification,
  2. BuildContext context
)

Implementation

bool postNotification(ScrollNotification notification, BuildContext context) {
  ScrollNotificationPublisher.of(context).add(notification);
  return false;
}