totalJobs property

int totalJobs

Returns the total number of jobs that have been given to this pool.

Implementation

int get totalJobs =>
    _completedJobs.length + _inProgressJobs + _pendingJobs.length + _failedJobs.length;