copyWithWrapped method

PatchTransactionsWrapper copyWithWrapped({
  1. Wrapped<List<SaveTransactionWithId>>? transactions,
})

Implementation

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