endAllCalls method

Future<void> endAllCalls()

End all calls that have been started on the device.

Implementation

Future<void> endAllCalls() async {
  if (!Platform.isIOS) {
    return;
  }
  await _channel.invokeMethod<void>('endAllCalls');
}