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