InvoiceObject constructor

InvoiceObject({
  1. bool? isSuccessful,
  2. ErrorObject? error,
  3. String? businessName,
  4. String? code,
  5. String? status,
  6. String? customerName,
  7. String? customerEmail,
  8. String? url,
  9. ChargeObject? charge,
  10. String? memo,
  11. DateTime? createdAt,
  12. DateTime? updatedAt,
  13. Map? localPrice,
})

Implementation

InvoiceObject({
  this.isSuccessful,
  this.error,
  this.businessName,
  this.code,
  this.status,
  this.customerName,
  this.customerEmail,
  this.url,
  this.charge,
  this.memo,
  this.createdAt,
  this.updatedAt,
  this.localPrice,
});