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