onAudioParamWillBeDestroyed property

Stream<AudioParamWillBeDestroyedEvent> onAudioParamWillBeDestroyed

Notifies that an existing AudioParam has been destroyed.

Implementation

Stream<AudioParamWillBeDestroyedEvent> get onAudioParamWillBeDestroyed =>
    _client.onEvent
        .where((event) => event.name == 'WebAudio.audioParamWillBeDestroyed')
        .map((event) =>
            AudioParamWillBeDestroyedEvent.fromJson(event.parameters));