setProgress method
void
setProgress(
- dynamic current,
- dynamic total
Implementation
void setProgress(current, total) {
if (progress != null) progress!(current, total);
if (!_isDisposed) notifyListeners();
}