shouldShowStripeIcon property
Implementation
bool get shouldShowStripeIcon {
switch (this) {
case PaymentMethod.cryptoCurrency:
return false;
case PaymentMethod.cardPayment:
return true;
case PaymentMethod.bankTransfer:
return false;
default:
return false;
}
}