flutter void ARRtmClient.clearChannelAttributes         ({
    String                      channelId,
    ChannelAttributeOptions     option,
    ResultCallback< Void >      resultCallback 
});
清空某指定频道的属性。
- 你无需加入指定频道即可清空该频道属性。
 - setLocalUserAttributes 、 addOrUpdateChannelAttributes 、 deleteChannelAttributesByKeys ,和 clearChannelAttributes 一并计算在内:调用频率上限为每 5 秒 10 次。
 
参数
channelId该指定频道的频道 ID。
option频道属性操作选项。详见 ChannelAttributeOptions。
resultCallback
- 方法调用成功:收到 onSuccess 回调。
 - 方法调用失败:收到 onFailure 回调。错误码详见 RtmProcessAttributeErrorCode。
 
Implementation
Future <void> ARRtmClient.clearChannelAttributes{
     String                         channelId,
}

