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