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