isScreenShareAudioEnabled method

bool isScreenShareAudioEnabled()

Convenience property to check whether TrackSource.screenShareAudio is published or not.

Implementation

bool isScreenShareAudioEnabled() {
  return !(getTrackPublicationBySource(TrackSource.screenShareAudio)?.muted ??
      true);
}