fromValue static method
- int value
Implementation
static Stop fromValue(int value) => switch (value) {
0 => RUNNING,
1 => STOP_PARALLEL_SEARCH,
2 => STOP_PONDERING,
3 => STOP_TIMEOUT,
4 => STOP_ON_DEMAND,
5 => STOP_END,
_ => throw ArgumentError('Unknown value for Stop: $value'),
};