fromInt static method
Implementation
static ProgressionSource fromInt(int val) {
return ProgressionSource.values.firstWhere((e) => e.value == val, orElse: () => ProgressionSource.Undefined);
}
static ProgressionSource fromInt(int val) {
return ProgressionSource.values.firstWhere((e) => e.value == val, orElse: () => ProgressionSource.Undefined);
}