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