copyWithWrapped method
Implementation
ScheduledSubTransaction copyWithWrapped(
{Wrapped<String>? id,
Wrapped<String>? scheduledTransactionId,
Wrapped<num>? amount,
Wrapped<String?>? memo,
Wrapped<String?>? payeeId,
Wrapped<String?>? categoryId,
Wrapped<String?>? transferAccountId,
Wrapped<bool>? deleted}) {
return ScheduledSubTransaction(
id: (id != null ? id.value : this.id),
scheduledTransactionId: (scheduledTransactionId != null
? scheduledTransactionId.value
: this.scheduledTransactionId),
amount: (amount != null ? amount.value : this.amount),
memo: (memo != null ? memo.value : this.memo),
payeeId: (payeeId != null ? payeeId.value : this.payeeId),
categoryId: (categoryId != null ? categoryId.value : this.categoryId),
transferAccountId: (transferAccountId != null
? transferAccountId.value
: this.transferAccountId),
deleted: (deleted != null ? deleted.value : this.deleted));
}