fromRawValue static method

OfferFlowType fromRawValue(
  1. String value
)

Implementation

static OfferFlowType fromRawValue(String value) {
  return OfferFlowType.values.firstWhere(
    (e) => e.rawValue == value,
    orElse: () => OfferFlowType.migration,
  );
}