MonthlyInvoiceSummaryModel constructor

MonthlyInvoiceSummaryModel({
  1. required double toInvoice,
  2. required double invoiced,
  3. List<InvoiceSummaryModel> customerSummaries = const [],
})

Returns a new MonthlyInvoiceSummaryModel instance.

Implementation

MonthlyInvoiceSummaryModel({
  required this.toInvoice,
  required this.invoiced,
  this.customerSummaries = const [],
});