acceptRemoteInvitation method

Future<void> acceptRemoteInvitation(
  1. Map arguments
)

Allows the callee to accept a call invitation.

Implementation

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