startAudioMuted method

SessionSettingsBuilder startAudioMuted(
  1. bool muted
)

Sets whether audio should start muted.

Implementation

SessionSettingsBuilder startAudioMuted(bool muted) {
  _startAudioMuted = muted;
  return this;
}