endCall method

Future<void> endCall(
  1. String uuid
)

End an Incoming/Outgoing call. On iOS, using Callkit(update a history into the Phone app). On Android, Nothing(only callback event listener).

Implementation

Future<void> endCall(String uuid) async {
  await _channel.invokeMethod("endCall", {'id': uuid});
}