InvoiceListModel constructor

InvoiceListModel({
  1. Facets? facets,
  2. int? totalItems,
  3. List<InvoiceModel>? items,
})

Implementation

InvoiceListModel({
  this.facets,
  this.totalItems,
  this.items,
});