setCallConfig abstract method

Future<VoidResult> setCallConfig({
  1. bool enableOffline = true,
  2. bool enableSwitchVideoConfirm = false,
  3. bool enableSwitchAudioConfirm = false,
})

Updates the call configuration used by the engine.

  • enableOffline: whether offline push and signaling are supported.
  • enableSwitchVideoConfirm: whether switching to video requires confirmation.
  • enableSwitchAudioConfirm: whether switching to audio requires confirmation.

Implementation

Future<VoidResult> setCallConfig({
  bool enableOffline = true,
  bool enableSwitchVideoConfirm = false,
  bool enableSwitchAudioConfirm = false,
});