cbConnectionEventFromRawValue function
Implementation
CBConnectionEvent cbConnectionEventFromRawValue(int rawValue) {
return switch (rawValue) {
1 => CBConnectionEvent.peerConnected,
0 || _ => CBConnectionEvent.peerDisconnected,
};
}
CBConnectionEvent cbConnectionEventFromRawValue(int rawValue) {
return switch (rawValue) {
1 => CBConnectionEvent.peerConnected,
0 || _ => CBConnectionEvent.peerDisconnected,
};
}