onScrollUpdate method

void onScrollUpdate(
  1. Notification notification
)

Implementation

void onScrollUpdate(Notification notification) {
  try{
    if (notification is ScrollEndNotification) {
      Logger.d('Scroll end for : ${notification.metrics.pixels.toInt()}');
      handleUpdate();
    }
  } catch (e){
    Logger.d("error while handling scroll update");
  }
}