fromValue static method
Implementation
static AccountSetAsfFlag? fromValue(int? value) {
if (value == null) return null;
try {
return values.firstWhere((element) => element.value == value);
} on StateError {
return null;
}
}
static AccountSetAsfFlag? fromValue(int? value) {
if (value == null) return null;
try {
return values.firstWhere((element) => element.value == value);
} on StateError {
return null;
}
}