cancelVideoCallSwitch static method

Future<bool> cancelVideoCallSwitch()

Cancels the video call switch operation.

This method sends a request to the Mirrorfly platform to cancel the ongoing video call switch operation. It returns a Future that completes with the result of the operation.

cancelVideoCallSwitch Used to Cancel the Video Call Request from Audio to Video Call You can use this cancelVideoCallSwitch to deny the request and also call this method When the Request Timeouts

Implementation

static Future<bool> cancelVideoCallSwitch() async {
  return FlyChatFlutterPlatform.instance.cancelVideoCallSwitch();
}