copyWithWrapped method
Implementation
TransactionsGetRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<TransactionsGetRequestOptions?>? options,
Wrapped<String>? accessToken,
Wrapped<String?>? secret,
Wrapped<DateTime>? startDate,
Wrapped<DateTime>? endDate}) {
return TransactionsGetRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
options: (options != null ? options.value : this.options),
accessToken:
(accessToken != null ? accessToken.value : this.accessToken),
secret: (secret != null ? secret.value : this.secret),
startDate: (startDate != null ? startDate.value : this.startDate),
endDate: (endDate != null ? endDate.value : this.endDate));
}