CardPaymentData constructor

CardPaymentData({
  1. required String id,
  2. required String type,
  3. required String category,
  4. required String? nextAction,
  5. required String name,
  6. required String last4,
  7. required String? acsCheck,
  8. required String? cvvCheck,
  9. required String expirationYear,
  10. required String expirationMonth,
  11. required String? fingerprintToken,
  12. 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,
});