ChargeData constructor

ChargeData({
  1. String? id,
  2. int? amount,
  3. String? balanceTransaction,
  4. bool? paid,
  5. String? paymentIntent,
  6. String? paymentMethod,
  7. String? receiptEmail,
  8. String? receiptUrl,
})

Implementation

ChargeData({
  this.id,
  this.amount,
  this.balanceTransaction,
  this.paid,
  this.paymentIntent,
  this.paymentMethod,
  this.receiptEmail,
  this.receiptUrl,
});