SubTransaction constructor

SubTransaction({
  1. required String id,
  2. required String transactionId,
  3. required num amount,
  4. String? memo,
  5. String? payeeId,
  6. String? payeeName,
  7. String? categoryId,
  8. String? categoryName,
  9. String? transferAccountId,
  10. String? transferTransactionId,
  11. required bool deleted,
})

Implementation

SubTransaction({
  required this.id,
  required this.transactionId,
  required this.amount,
  this.memo,
  this.payeeId,
  this.payeeName,
  this.categoryId,
  this.categoryName,
  this.transferAccountId,
  this.transferTransactionId,
  required this.deleted,
});