removeMembers method Null safety
Removes a member from the group.
Only the group owner or admin can call this method.
Param groupId
The group ID.
Param members
The username of the member to be removed.
Throws A description of the exception. See {@link EMError}.
Implementation
Future<void> removeMembers(
String groupId,
List<String> members,
) async {
Map req = {'groupId': groupId, 'members': members};
Map result = await _channel.invokeMethod(ChatMethodKeys.removeMembers, req);
try {
EMError.hasErrorFromResult(result);
} on EMError catch (e) {
throw e;
}
}