mapPaymentMethod static method
- 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;
}
}