SaveTransaction constructor
SaveTransaction({
- required String accountId,
- required DateTime date,
- required num amount,
- String? payeeId,
- String? payeeName,
- String? categoryId,
- String? memo,
- SaveTransactionCleared? cleared,
- bool? approved,
- SaveTransactionFlagColor? flagColor,
- String? importId,
- List<
SaveSubTransaction> ? subtransactions,
Implementation
SaveTransaction({
required this.accountId,
required this.date,
required this.amount,
this.payeeId,
this.payeeName,
this.categoryId,
this.memo,
this.cleared,
this.approved,
this.flagColor,
this.importId,
this.subtransactions,
});