sendLocalInvitation method

Future<void> sendLocalInvitation(
  1. Map arguments
)

Allows the caller to send a call invitation to the callee.

Implementation

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