copyWithWrapped method
Implementation
TransferEventSyncRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<int>? afterId,
Wrapped<int?>? count}) {
return TransferEventSyncRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret),
afterId: (afterId != null ? afterId.value : this.afterId),
count: (count != null ? count.value : this.count));
}