cancelCallCRCDevice method

  1. @override
Future<String> cancelCallCRCDevice()

Cancels the call to the CRC device.
Return ZoomVideoSDKError_Success if the function succeeds. Otherwise, this function returns an error.

Implementation

@override
Future<String> cancelCallCRCDevice() async {
  return await methodChannel
      .invokeMethod<String>('cancelCallCRCDevice')
      .then<String>((String? value) => value ?? "");
}