fetchChatRoomAttributes method
根据属性键列表获取自定义聊天室属性的列表。
Param roomId
聊天室 ID。
Param keys
要获取的属性的键列表。如果将其设置为“null”或留空,此方法将检索所有自定义属性。
Return 键值对应的聊天室属性。
Throws 如果有异常会在这里抛出,包含错误码和错误描述,详见 EMError。
Implementation
Future<Map<String, String>?> fetchChatRoomAttributes({
required String roomId,
List<String>? keys,
}) async {
Map req = {
"roomId": roomId,
};
if (keys != null) {
req['keys'] = keys;
}
Map result = await _channel.invokeMethod(
ChatMethodKeys.fetchChatRoomAttributes,
req,
);
try {
EMError.hasErrorFromResult(result);
return result[ChatMethodKeys.fetchChatRoomAttributes]
?.cast<String, String>();
} on EMError catch (e) {
throw e;
}
}