state property

Implementation

AudioPlayerState? get state => _audioPlayerState;
void state=(AudioPlayerState? state)

Implementation

set state(AudioPlayerState? state) {
  _playerStateController.add(state);
  // ignore: deprecated_member_use_from_same_package
  audioPlayerStateChangeHandler?.call(state);
  _audioPlayerState = state;
}