fromRawValue static method

PromotionType fromRawValue(
  1. String value
)

Implementation

static PromotionType fromRawValue(String value) {
  return PromotionType.values.firstWhere(
    (e) => e.rawValue == value,
    orElse: () => throw ArgumentError('Unknown PromotionType: $value'),
  );
}