paymentMethodText function

String paymentMethodText(
  1. AdpPaymentMethod method
)

Implementation

String paymentMethodText(AdpPaymentMethod method) {
  return method == AdpPaymentMethod.mobile ? "mobile" : "bank";
}