SaveTransactionWithId constructor

SaveTransactionWithId({
  1. String? id,
  2. String? accountId,
  3. DateTime? date,
  4. num? amount,
  5. String? payeeId,
  6. String? payeeName,
  7. String? categoryId,
  8. String? memo,
  9. SaveTransactionWithIdCleared? cleared,
  10. bool? approved,
  11. SaveTransactionWithIdFlagColor? flagColor,
  12. String? importId,
  13. List<SaveSubTransaction>? subtransactions,
})

Implementation

SaveTransactionWithId({
  this.id,
  this.accountId,
  this.date,
  this.amount,
  this.payeeId,
  this.payeeName,
  this.categoryId,
  this.memo,
  this.cleared,
  this.approved,
  this.flagColor,
  this.importId,
  this.subtransactions,
});