PaymentMethod constructor

PaymentMethod({
  1. required String id,
  2. required bool livemode,
  3. required String type,
  4. required BillingDetails billingDetails,
  5. String? customer,
  6. PaymentMethodCard? card,
  7. PaymentMethodUsBankAccount? usBankAccount,
})

Implementation

PaymentMethod({
  required this.id,
  required this.livemode,
  required this.type,
  required this.billingDetails,
  this.customer,
  this.card,
  this.usBankAccount,
});