Account constructor

Account({
  1. required String id,
  2. required String name,
  3. required AccountType type,
  4. required bool onBudget,
  5. required bool closed,
  6. String? note,
  7. required num balance,
  8. required num clearedBalance,
  9. required num unclearedBalance,
  10. required String transferPayeeId,
  11. bool? directImportLinked,
  12. bool? directImportInError,
  13. required bool deleted,
})

Implementation

Account({
  required this.id,
  required this.name,
  required this.type,
  required this.onBudget,
  required this.closed,
  this.note,
  required this.balance,
  required this.clearedBalance,
  required this.unclearedBalance,
  required this.transferPayeeId,
  this.directImportLinked,
  this.directImportInError,
  required this.deleted,
});