pauseAll method
void
pauseAll()
Pause all workers in the group
Implementation
void pauseAll() {
for (final worker in _workers) {
if (!worker.isDisposed) {
worker.pause();
}
}
}
Pause all workers in the group
void pauseAll() {
for (final worker in _workers) {
if (!worker.isDisposed) {
worker.pause();
}
}
}