copyWith method
Implementation
SaveSubTransaction copyWith(
{num? amount,
String? payeeId,
String? payeeName,
String? categoryId,
String? memo}) {
return SaveSubTransaction(
amount: amount ?? this.amount,
payeeId: payeeId ?? this.payeeId,
payeeName: payeeName ?? this.payeeName,
categoryId: categoryId ?? this.categoryId,
memo: memo ?? this.memo);
}