fromValue static method
- int value
Implementation
static TIMReceiveMessageOpt fromValue(int value) => switch (value) {
0 => kTIMRecvMsgOpt_Receive,
1 => kTIMRecvMsgOpt_Not_Receive,
2 => kTIMRecvMsgOpt_Not_Notify,
3 => kTIMRecvMsgOpt_Not_Notify_Except_At,
4 => kTIMRecvMsgOpt_Not_Receive_Except_At,
_ =>
throw ArgumentError("Unknown value for TIMReceiveMessageOpt: $value"),
};