copyWith method
Implementation
InvestmentsTransactionsGetRequest copyWith(
{String? clientId,
String? secret,
String? accessToken,
DateTime? startDate,
DateTime? endDate,
InvestmentsTransactionsGetRequestOptions? options}) {
return InvestmentsTransactionsGetRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
accessToken: accessToken ?? this.accessToken,
startDate: startDate ?? this.startDate,
endDate: endDate ?? this.endDate,
options: options ?? this.options);
}