AccountSummaryModel constructor
AccountSummaryModel({
- List<
AccountModel> accounts = const [], - required double balance,
- required double paid,
- required double invoiced,
Returns a new AccountSummaryModel instance.
Implementation
AccountSummaryModel({
this.accounts = const [],
required this.balance,
required this.paid,
required this.invoiced,
});