switchToCall method

Future<void> switchToCall(
  1. int callId
)

Switch to the selected call (sound from microphone is sending to this call and speaker plays sound received from this call)

Implementation

Future<void> switchToCall(int callId) {
  return _platform.switchToCall(callId);
}