showPauseVideoButton method

CallSettingsBuilder showPauseVideoButton(
  1. bool show
)

Shows or hides the pause video button. Requirements: 5.3

Implementation

CallSettingsBuilder showPauseVideoButton(bool show) {
  _hidePauseVideoButton = !show;
  return this;
}