getBackToCall method

  1. @override
Future<bool> getBackToCall()
override

Attempts to return to the active call screen. It checks if there is an active call and if the client is on a VoIP call. If the both conditions are met, it launches the call screen

Implementation

@override
Future<bool> getBackToCall() async {
  var result = await _methodChannel.invokeMethod(SCMethodCall.getBackToCall);
  return result;
}