SignallingEventType enum Null safety
Constructors
- SignallingEventType()
-
const
Values
- unKnow → const SignallingEventType
-
未知事件
const SignallingEventType(0)
- close → const SignallingEventType
-
频道关闭事件
const SignallingEventType(1)
- join → const SignallingEventType
-
有人加入频道事件
const SignallingEventType(2)
- invite → const SignallingEventType
-
被邀请事件
const SignallingEventType(3)
- cancelInvite → const SignallingEventType
-
取消邀请事件
const SignallingEventType(4)
- reject → const SignallingEventType
-
对方拒绝邀请事件
const SignallingEventType(5)
- accept → const SignallingEventType
-
对方接受邀请事件
const SignallingEventType(6)
- leave → const SignallingEventType
-
有用户离开频道事件
const SignallingEventType(7)
- control → const SignallingEventType
-
自定义控制命令事件
const SignallingEventType(8)
Properties
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<
SignallingEventType> -
A constant List of the values in this enum, in order of their declaration.
[unKnow, close, join, invite, cancelInvite, reject, accept, leave, control]