notifyProgress method

void notifyProgress(
  1. double progress
)

Implementation

void notifyProgress(double progress) {
  currentProgress = progress;
  notifierLazy();
  if (progress == 1) {
    currentProgress = 0;
  }
}