copyWith method

InvestmentsTransactionsGetRequestOptions copyWith({
  1. List<String>? accountIds,
  2. int? count,
  3. int? offset,
})

Implementation

InvestmentsTransactionsGetRequestOptions copyWith(
    {List<String>? accountIds, int? count, int? offset}) {
  return InvestmentsTransactionsGetRequestOptions(
      accountIds: accountIds ?? this.accountIds,
      count: count ?? this.count,
      offset: offset ?? this.offset);
}