PaymentMethodDetails constructor
PaymentMethodDetails({
- required Card card,
- required String country,
- required int exp_month,
- required int exp_year,
- required String fingerprint,
- required String funding,
- required Map<
String, dynamic> ? installments, - required String last4,
- required String? mandate,
- required String? moto,
- required String network,
- required String? three_d_secure,
- required Map<
String, dynamic> ? wallet, - 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,
});