fromRawValue static method

ModelSource fromRawValue(
  1. String value
)

Implementation

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