showRecordingButton method

CallSettingsBuilder showRecordingButton(
  1. bool show
)

Shows or hides the recording button. Requirements: 5.3

Implementation

CallSettingsBuilder showRecordingButton(bool show) {
  _hideRecordingButton = !show;
  return this;
}