copyWith method
InvestmentsHoldingsGetRequest
copyWith({
- String? clientId,
- String? secret,
- String? accessToken,
- InvestmentHoldingsGetRequestOptions? options,
Implementation
InvestmentsHoldingsGetRequest copyWith(
{String? clientId,
String? secret,
String? accessToken,
InvestmentHoldingsGetRequestOptions? options}) {
return InvestmentsHoldingsGetRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
accessToken: accessToken ?? this.accessToken,
options: options ?? this.options);
}