currentProgress property

TaskProgressIndicator get currentProgress

Gets the current progress.

If no progress is loaded, returns a new instance with 0/0.

Implementation

TaskProgressIndicator get currentProgress =>
    _currentProgress ?? TaskProgressIndicator(completed: 0, total: 0);