PaymentIntentionResponse constructor

const PaymentIntentionResponse({
  1. required List<PaymentKey> paymentKeys,
  2. required int intentionOrderId,
  3. required String id,
  4. required IntentionDetail intentionDetail,
  5. required String clientSecret,
  6. required List<PaymentMethod> paymentMethods,
  7. String? specialReference,
  8. required ExtrasData extras,
  9. required bool confirmed,
  10. required String status,
  11. required String created,
  12. dynamic cardDetail,
  13. required List cardTokens,
  14. required String object,
})

Implementation

const PaymentIntentionResponse({
  required this.paymentKeys,
  required this.intentionOrderId,
  required this.id,
  required this.intentionDetail,
  required this.clientSecret,
  required this.paymentMethods,
  this.specialReference,
  required this.extras,
  required this.confirmed,
  required this.status,
  required this.created,
  this.cardDetail,
  required this.cardTokens,
  required this.object,
});