endCall method

  1. @override
Future<void> endCall(
  1. String uuid
)
override

End an Incoming/Outgoing call with the specified uuid.

Implementation

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