copyWith method
Implementation
PatchTransactionsWrapper copyWith(
{List<SaveTransactionWithId>? transactions}) {
return PatchTransactionsWrapper(
transactions: transactions ?? this.transactions);
}
PatchTransactionsWrapper copyWith(
{List<SaveTransactionWithId>? transactions}) {
return PatchTransactionsWrapper(
transactions: transactions ?? this.transactions);
}