isPaused property

bool isPaused

Implementation

bool get isPaused => _isPaused;
void isPaused=(bool value)

Implementation

set isPaused(bool value) {
  if (_isPaused == value) {
    return;
  }
  _isPaused = value;
  updatePlayState();
}