declineVideoCallSwitchRequest method
Future<bool?>
declineVideoCallSwitchRequest(
)
override
Implementation
@override
Future<bool?> declineVideoCallSwitchRequest() async {
bool? res;
try {
res = await mirrorFlyCallMethodChannel.invokeMethod('declineVideoCallSwitchRequest');
LogMessage.d('declineVideoCallSwitchRequest', '$res');
return res;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
rethrow;
} on Exception catch (error) {
LogMessage.d("Exception ", " $error");
rethrow;
}
}