suppressLocalAudioPlaybackIntended property

bool? get suppressLocalAudioPlaybackIntended

Indicates that the caller intends to perform local audio suppression, and that the media picker shown to the user should therefore reflect that with the appropriate warnings, as it does when getDisplayMedia() is invoked.

Implementation

bool? get suppressLocalAudioPlaybackIntended =>
    _wrapped.suppressLocalAudioPlaybackIntended;
set suppressLocalAudioPlaybackIntended (bool? v)

Implementation

set suppressLocalAudioPlaybackIntended(bool? v) {
  _wrapped.suppressLocalAudioPlaybackIntended = v;
}