showMuteAudioButton method

CallSettingsBuilder showMuteAudioButton(
  1. bool show
)

Shows or hides the mute audio button. Requirements: 5.3

Implementation

CallSettingsBuilder showMuteAudioButton(bool show) {
  _hideMuteAudioButton = !show;
  return this;
}