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