PaymentMethodDetails constructor

PaymentMethodDetails({
  1. required Card card,
  2. required String country,
  3. required int exp_month,
  4. required int exp_year,
  5. required String fingerprint,
  6. required String funding,
  7. required Map<String, dynamic>? installments,
  8. required String last4,
  9. required String? mandate,
  10. required String? moto,
  11. required String network,
  12. required String? three_d_secure,
  13. required Map<String, dynamic>? wallet,
  14. required String type,
})

Implementation

PaymentMethodDetails({
  required this.card,
  required this.country,
  required this.exp_month,
  required this.exp_year,
  required this.fingerprint,
  required this.funding,
  required this.installments,
  required this.last4,
  required this.mandate,
  required this.moto,
  required this.network,
  required this.three_d_secure,
  required this.wallet,
  required this.type,
});