activeCount property

int get activeCount

Number of active workers in the group (not disposed, not paused)

Implementation

int get activeCount => _workers.where((w) => w.isActive).length;