mapPaymentMethod static method

PaymentMethod mapPaymentMethod(
  1. String type
)

Implementation

static PaymentMethod mapPaymentMethod(String type) {
  switch (type.toLowerCase()) {
  case "bank-transfer":
    return PaymentMethod.bankTransfer;
    case "crypto-currency":
      return PaymentMethod.cryptoCurrency;
    case "card-payment":
      return PaymentMethod.cryptoCurrency;
    default:
      return PaymentMethod.cryptoCurrency;
  }
}