endCall static method

Future<bool> endCall(
  1. String uuid
)

end call initiated by user. Also could call Call.end()

Implementation

static Future<bool> endCall(String uuid) async {
  final res = await _methodChannel
      .invokeMethod(_methodChannelEndCall, {"uuid": uuid});
  return res as bool;
}