clearLocalUserAttributes method

Future<void> clearLocalUserAttributes()

Clears all attributes of the local user.

Implementation

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