Charge constructor

Charge({
  1. ChargeStatusEnum? status,
  2. String? id,
  3. String? created,
  4. String? currency,
  5. String? amount,
  6. String? authCode,
  7. String? description,
  8. String? avsStreet,
  9. String? avsZip,
  10. bool? capture,
  11. CaptureDetail? captureDetail,
  12. Card? card,
  13. String? cardSecurityCodeMatch,
  14. PaymentContext? context,
  15. String? token,
})

Implementation

Charge({
  this.status, this.id, this.created, this.currency, this.amount,
  this.authCode, this.description, this.avsStreet, this.avsZip,
  this.capture, this.captureDetail, this.card, this.cardSecurityCodeMatch,
  this.context, this.token
});