cancelCoBrowseRequest method
Implementation
@override
Future<void> cancelCoBrowseRequest() async {
try {
await methodChannel.invokeMethod('cancelCoBrowseRequest');
} on PlatformException catch (e) {
throw Exception('Failed to cancelCoBrowseRequest: ${e.message}');
}
}