endCall method

Future<void> endCall(
  1. String uuid
)

When you finish an incoming/outgoing call.

The uuid used for startCall or displayIncomingCall

Implementation

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