fromInt static method
Implementation
static ReceiveMethod fromInt(int val) {
return ReceiveMethod.values.firstWhere((e) => e.value == val, orElse: () => ReceiveMethod.Undefined);
}
static ReceiveMethod fromInt(int val) {
return ReceiveMethod.values.firstWhere((e) => e.value == val, orElse: () => ReceiveMethod.Undefined);
}