getCardType function

CreditCardType? getCardType(
  1. String cardName
)

Gets the CreditCardType object associated with the cardName

Implementation

CreditCardType? getCardType(String cardName) {
  return _customCards.getCardType(cardName);
}