Variable.fromValue constructor
Variable.fromValue(
- int value
Implementation
factory Variable.fromValue(int value) {
final result = values[value];
if (result == null) {
throw StateError('Invalid value $value for bit flag enum Variable');
}
return result;
}