copyWith method

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

Implementation

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