PaymentMethodIcon constructor

const PaymentMethodIcon({
  1. Key? key,
  2. required String paymentMethod,
  3. String? cardType,
  4. double size = 24,
  5. Color? color,
})

Implementation

const PaymentMethodIcon({
  super.key,
  required this.paymentMethod,
  this.cardType,
  this.size = 24,
  this.color,
});