MmInvoice constructor

MmInvoice({
  1. String? id,
  2. String? number,
  3. int? createAt,
  4. int? total,
  5. int? tax,
  6. String? status,
  7. int? periodStart,
  8. int? periodEnd,
  9. String? subscriptionId,
  10. List<MmInvoiceLineItem> item = const [],
})

Returns a new MmInvoice instance.

Implementation

MmInvoice({
  this.id,
  this.number,
  this.createAt,
  this.total,
  this.tax,
  this.status,
  this.periodStart,
  this.periodEnd,
  this.subscriptionId,
  this.item = const [],
});