fromRawValue static method

ModelFormat fromRawValue(
  1. String value
)

Implementation

static ModelFormat fromRawValue(String value) {
  return ModelFormat.values.firstWhere(
    (f) => f.rawValue == value.toLowerCase(),
    orElse: () => ModelFormat.unknown,
  );
}