AccountSummaryModel constructor

AccountSummaryModel({
  1. List<AccountModel> accounts = const [],
  2. required double balance,
  3. required double paid,
  4. required double invoiced,
})

Returns a new AccountSummaryModel instance.

Implementation

AccountSummaryModel({
  this.accounts = const [],
  required this.balance,
  required this.paid,
  required this.invoiced,
});