onScrollEndNotificationReceived method

void onScrollEndNotificationReceived()

call this method when a scroll end notification is received from notification listener widget

Implementation

void onScrollEndNotificationReceived() {
  double val =
      (controller.offset / controller.position.maxScrollExtent) * 100;
  progress.setValue(val);
}