getByValue static method
Implementation
static RFIDErrorCodes? getByValue(int? i) {
if (i == null) return null;
try {
return RFIDErrorCodes.values.firstWhere((x) => x.value == i);
} catch (_) {
return RFIDErrorCodes.UNDEFINED;
}
}
static RFIDErrorCodes? getByValue(int? i) {
if (i == null) return null;
try {
return RFIDErrorCodes.values.firstWhere((x) => x.value == i);
} catch (_) {
return RFIDErrorCodes.UNDEFINED;
}
}