fromInt static method

FTR_SIGNAL_STATUS? fromInt(
  1. int value
)

Implementation

static FTR_SIGNAL_STATUS? fromInt(int value) {
  try {
    return FTR_SIGNAL_STATUS.values
        .firstWhere((element) => element.value == value);
  } catch (e) {
    return null;
  }
}