state property

PlayerState state

Implementation

PlayerState get state => _playerState;
void state=(PlayerState state)

Implementation

set state(PlayerState state) {
  if (!_playerStateController.isClosed) {
    _playerStateController.add(state);
  }
  _playerState = state;
}