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