fromRawValue static method
Implementation
static ModelSource fromRawValue(String value) {
return ModelSource.values.firstWhere(
(s) => s.rawValue == value,
orElse: () => ModelSource.remote,
);
}
static ModelSource fromRawValue(String value) {
return ModelSource.values.firstWhere(
(s) => s.rawValue == value,
orElse: () => ModelSource.remote,
);
}