cancelCallCRCDevice method
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 ?? "");
}