isPaused property

bool get isPaused

Whether the stream is currently paused.

Implementation

bool get isPaused {
  throwIfDisposed('get isPaused');
  return _state.value == StreamState.paused;
}