copyWith method
      
TransactionsGetResponse
copyWith({ 
    
    
- List<AccountBase> ? accounts,
- List<Transaction> ? transactions,
- int? totalTransactions,
- Item? item,
- String? requestId,
Implementation
TransactionsGetResponse copyWith(
    {List<AccountBase>? accounts,
    List<Transaction>? transactions,
    int? totalTransactions,
    Item? item,
    String? requestId}) {
  return TransactionsGetResponse(
      accounts: accounts ?? this.accounts,
      transactions: transactions ?? this.transactions,
      totalTransactions: totalTransactions ?? this.totalTransactions,
      item: item ?? this.item,
      requestId: requestId ?? this.requestId);
}