getCardIcon static method
Implementation
static Map getCardIcon(input) {
CardType cardType =
CardUtils.getCardTypeFrmNumber(input.replaceAll(' ', ''));
String img = "";
double imgWidth = 30.0;
switch (cardType) {
case CardType.master:
img = 'brand_mastercard.png';
imgWidth = 40.0;
break;
case CardType.visa:
img = 'brand_visa.png';
imgWidth = 40.0;
break;
default:
img = 'credit_card.png';
break;
}
return {"img": img, "width": imgWidth};
}