addMembersToChatRoomWhiteList method Null safety
- @Deprecated("Switch to using EMChatManager#addMembersToChatRoomAllowList instead.")
@Deprecated("Switch to using EMChatManager#addMembersToChatRoomAllowList instead.")
Adds members to the allowlist.
Only the chat room owner or admin can call this method.
Param roomId
The chat room ID.
Param members
The list of members to be added to the allow list.
Throws A description of the exception. See {@link EMError}.
Implementation
@Deprecated(
"Switch to using EMChatManager#addMembersToChatRoomAllowList instead.")
Future<void> addMembersToChatRoomWhiteList(
String roomId,
List<String> members,
) async {
Map req = {
"roomId": roomId,
"members": members,
};
Map result = await _channel.invokeMethod(
ChatMethodKeys.addMembersToChatRoomWhiteList,
req,
);
try {
EMError.hasErrorFromResult(result);
} on EMError catch (e) {
throw e;
}
}