resumeAll method

void resumeAll()

Resume all workers in the group

Implementation

void resumeAll() {
  for (final worker in _workers) {
    if (!worker.isDisposed) {
      worker.resume();
    }
  }
}