NERoomEndReason enum Null safety

房间结束原因枚举

Inheritance

Constructors

NERoomEndReason()
const

Values

kLeaveBySelf → const NERoomEndReason

成员主动离开房间

const NERoomEndReason(0)
kSyncDataError → const NERoomEndReason

数据同步错误

const NERoomEndReason(1)
kKickOut → const NERoomEndReason

被管理员踢出房间

const NERoomEndReason(2)
kKickBySelf → const NERoomEndReason

多端同时加入同一房间被踢

const NERoomEndReason(3)
kCloseByMember → const NERoomEndReason

房间被关闭

const NERoomEndReason(4)
kEndOfLife → const NERoomEndReason

房间到期关闭

const NERoomEndReason(5)
kAllMemberOut → const NERoomEndReason

所有成员退出

const NERoomEndReason(6)
kCloseByBackend → const NERoomEndReason

后台关闭

const NERoomEndReason(7)
kLoginStateError → const NERoomEndReason

账号异常

const NERoomEndReason(8)
kUnknown → const NERoomEndReason

未知异常

const NERoomEndReason(9)

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<NERoomEndReason>
A constant List of the values in this enum, in order of their declaration.
[kLeaveBySelf, kSyncDataError, kKickOut, kKickBySelf, kCloseByMember, kEndOfLife, kAllMemberOut, kCloseByBackend, kLoginStateError, kUnknown]