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