onScrollUpdate method
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");
}
}