onIsPlayingChanged property

Stream<bool> onIsPlayingChanged

Implementation

static Stream<bool> get onIsPlayingChanged {
  if (!_onIsPlayingChangedInitialized) {
    _onGetIsPlayingChanged = _onChangeIsPlayingDataHandler
        .receiveBroadcastStream()
        .map<bool>((value) => value);

    _onIsPlayingChangedInitialized = true;
  }

  return _onGetIsPlayingChanged;
}