copyWithWrapped method
Implementation
TransactionsSyncRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String>? accessToken,
Wrapped<String?>? secret,
Wrapped<String?>? cursor,
Wrapped<int?>? count,
Wrapped<TransactionsSyncRequestOptions?>? options}) {
return TransactionsSyncRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
accessToken:
(accessToken != null ? accessToken.value : this.accessToken),
secret: (secret != null ? secret.value : this.secret),
cursor: (cursor != null ? cursor.value : this.cursor),
count: (count != null ? count.value : this.count),
options: (options != null ? options.value : this.options));
}