NIMChatroomMemberQueryType enum Null safety

成员查询类型

Inheritance

Constructors

NIMChatroomMemberQueryType()
const

Values

allNormalMember → const NIMChatroomMemberQueryType

固定成员(包括创建者,管理员,普通等级用户,受限用户(禁言+黑名单),即使非在线也可以在列表中看到,有数量限制 )

const NIMChatroomMemberQueryType(0)
onlineNormalMember → const NIMChatroomMemberQueryType

仅在线的固定成员

const NIMChatroomMemberQueryType(1)
onlineGuestMemberByEnterTimeDesc → const NIMChatroomMemberQueryType

非固定成员 (又称临时成员,只有在线时才能在列表中看到,数量无上限) 按照进入聊天室时间倒序排序,进入时间越晚的越靠前

const NIMChatroomMemberQueryType(2)
onlineGuestMemberByEnterTimeAsc → const NIMChatroomMemberQueryType

非固定成员 (又称临时成员,只有在线时才能在列表中看到,数量无上限) 按照进入聊天室时间顺序排序,进入时间越早的越靠前

const NIMChatroomMemberQueryType(3)

Properties

hashCode int
The hash code for this object.
read-only, inherited
index int
A numeric identifier for the enumerated value.
read-only, inherited
runtimeType Type
A representation of the runtime type of the object.
read-only, inherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<NIMChatroomMemberQueryType>
A constant List of the values in this enum, in order of their declaration.
[allNormalMember, onlineNormalMember, onlineGuestMemberByEnterTimeDesc, onlineGuestMemberByEnterTimeAsc]