endCall method
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);
}