videoCall method
Implementation
@override
Future<bool> videoCall(String name) async {
try {
return await methodChannel
.invokeMethod('videoCall', {'name': name, 'video': true});
} on PlatformException catch (error) {
debugPrint("$error");
return false;
}
}