PaymentMethodAttributes constructor

const PaymentMethodAttributes({
  1. required PaymentMethodDetails details,
  2. required PayMongoBilling billing,
  3. PaymentType type = PaymentType.card,
})

billing for customer

Implementation

const PaymentMethodAttributes({
  required this.details,
  required this.billing,
  this.type = PaymentType.card,
});