ScheduledSubTransaction constructor

ScheduledSubTransaction({
  1. required String id,
  2. required String scheduledTransactionId,
  3. required num amount,
  4. String? memo,
  5. String? payeeId,
  6. String? categoryId,
  7. String? transferAccountId,
  8. required bool deleted,
})

Implementation

ScheduledSubTransaction({
  required this.id,
  required this.scheduledTransactionId,
  required this.amount,
  this.memo,
  this.payeeId,
  this.categoryId,
  this.transferAccountId,
  required this.deleted,
});