copyWith method
Implementation
TransactionSplit copyWith({
TransactionCategory? category,
Money? amount,
}) =>
TransactionSplit(
category: category ?? this.category,
amount: amount ?? this.amount,
);
TransactionSplit copyWith({
TransactionCategory? category,
Money? amount,
}) =>
TransactionSplit(
category: category ?? this.category,
amount: amount ?? this.amount,
);