HybridTransaction constructor
HybridTransaction({
- required HybridTransactionType type,
- String? parentTransactionId,
- required String accountName,
- String? payeeName,
- String? categoryName,
- required String id,
- required DateTime date,
- required num amount,
- String? memo,
- required HybridTransactionCleared cleared,
- required bool approved,
- HybridTransactionFlagColor? flagColor,
- required String accountId,
- String? payeeId,
- String? categoryId,
- String? transferAccountId,
- String? transferTransactionId,
- String? matchedTransactionId,
- String? importId,
- String? importPayeeName,
- String? importPayeeNameOriginal,
- required bool deleted,
Implementation
HybridTransaction({
required this.type,
this.parentTransactionId,
required this.accountName,
this.payeeName,
this.categoryName,
required this.id,
required this.date,
required this.amount,
this.memo,
required this.cleared,
required this.approved,
this.flagColor,
required this.accountId,
this.payeeId,
this.categoryId,
this.transferAccountId,
this.transferTransactionId,
this.matchedTransactionId,
this.importId,
this.importPayeeName,
this.importPayeeNameOriginal,
required this.deleted,
});