getByValue static method

RFIDErrorCodes? getByValue(
  1. int? i
)

Implementation

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