CardPaymentData constructor
CardPaymentData({
- required String id,
- required String type,
- required String category,
- required String? nextAction,
- required String name,
- required String last4,
- required String? acsCheck,
- required String? cvvCheck,
- required String expirationYear,
- required String expirationMonth,
- required String? fingerprintToken,
- required String? redirectUrl,
Implementation
CardPaymentData({
required this.id,
required this.type,
required this.category,
required this.nextAction,
required this.name,
required this.last4,
required this.acsCheck,
required this.cvvCheck,
required this.expirationYear,
required this.expirationMonth,
required this.fingerprintToken,
required this.redirectUrl,
});