cancelLocalInvitation method

Future<void> cancelLocalInvitation(
  1. Map arguments
)

Allows the caller to cancel a call invitation.

Implementation

Future<void> cancelLocalInvitation(Map<dynamic, dynamic> arguments) async {
  final res = await _callNative("cancelLocalInvitation", arguments);
  if (res["errorCode"] != 0)
    throw AgoraRtmClientException(
        "cancelLocalInvitation failed errorCode:${res['errorCode']}",
        res['errorCode']);
}