PaymentMethod constructor
PaymentMethod({
- required String id,
- required bool livemode,
- required String type,
- required BillingDetails billingDetails,
- String? customer,
- PaymentMethodCard? card,
- PaymentMethodUsBankAccount? usBankAccount,
Implementation
PaymentMethod({
required this.id,
required this.livemode,
required this.type,
required this.billingDetails,
this.customer,
this.card,
this.usBankAccount,
});