fromRawValue static method

OfferCheckoutPresentation fromRawValue(
  1. String value
)

Implementation

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