MonthlyInvoiceSummaryModel constructor
MonthlyInvoiceSummaryModel({
- required double toInvoice,
- required double invoiced,
- List<
InvoiceSummaryModel> customerSummaries = const [],
Returns a new MonthlyInvoiceSummaryModel instance.
Implementation
MonthlyInvoiceSummaryModel({
required this.toInvoice,
required this.invoiced,
this.customerSummaries = const [],
});