copyWithWrapped method
Implementation
PatchTransactionsWrapper copyWithWrapped(
{Wrapped<List<SaveTransactionWithId>>? transactions}) {
return PatchTransactionsWrapper(
transactions:
(transactions != null ? transactions.value : this.transactions));
}