Dispute constructor

Dispute({
  1. String? id,
  2. String? object,
  3. int? amount,
  4. List<BalanceTransaction>? balanceTransactions,
  5. dynamic charge,
  6. int? created,
  7. String? currency,
  8. Map<String, dynamic>? evidence,
  9. dynamic evidenceDetails,
  10. bool? isChargeRefundable,
  11. bool? livemode,
  12. Map<String, dynamic>? metadata,
  13. dynamic paymentIntent,
  14. String? reason,
  15. String? status,
})

Implementation

Dispute({
  this.id,
  this.object,
  this.amount,
  this.balanceTransactions,
  this.charge,
  this.created,
  this.currency,
  this.evidence,
  this.evidenceDetails,
  this.isChargeRefundable,
  this.livemode,
  this.metadata,
  this.paymentIntent,
  this.reason,
  this.status,
});