Items constructor

Items({
  1. String? id,
  2. String? description,
  3. String? scheduledDate,
  4. String? invoiceId,
  5. String? customerRef,
  6. String? total,
  7. String? taxes,
  8. String? clientShare,
  9. String? commission,
  10. String? numberOfInstallments,
  11. String? installment,
})

Implementation

Items({
  this.id,
  this.description,
  this.scheduledDate,
  this.invoiceId,
  this.customerRef,
  this.total,
  this.taxes,
  this.clientShare,
  this.commission,
  this.numberOfInstallments,
  this.installment,
});