SaveTransaction constructor

SaveTransaction({
  1. required String accountId,
  2. required DateTime date,
  3. required num amount,
  4. String? payeeId,
  5. String? payeeName,
  6. String? categoryId,
  7. String? memo,
  8. SaveTransactionCleared? cleared,
  9. bool? approved,
  10. SaveTransactionFlagColor? flagColor,
  11. String? importId,
  12. 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,
});