isPaused property

bool get isPaused

Whether the worker is paused

Implementation

bool get isPaused {
  if (_isPausedGetter != null) {
    return _isPausedGetter!();
  }
  return _paused;
}