Account constructor
Account({
- required String id,
- required String name,
- required AccountType type,
- required bool onBudget,
- required bool closed,
- String? note,
- required num balance,
- required num clearedBalance,
- required num unclearedBalance,
- required String transferPayeeId,
- bool? directImportLinked,
- bool? directImportInError,
- 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,
});