isPaused property
      
      bool
      get
      isPaused
      
    
    
    
Implementation
bool get isPaused => _isPaused;
      
      set
      isPaused
      (bool value) 
      
    
    
    
Implementation
set isPaused(bool value) {
  if (_isPaused == value) {
    return;
  }
  _isPaused = value;
  updatePlayState();
}