copyWithWrapped method
Implementation
TransferSweepListRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<DateTime?>? startDate,
Wrapped<DateTime?>? endDate,
Wrapped<int?>? count,
Wrapped<int?>? offset,
Wrapped<String?>? originatorClientId}) {
return TransferSweepListRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret),
startDate: (startDate != null ? startDate.value : this.startDate),
endDate: (endDate != null ? endDate.value : this.endDate),
count: (count != null ? count.value : this.count),
offset: (offset != null ? offset.value : this.offset),
originatorClientId: (originatorClientId != null
? originatorClientId.value
: this.originatorClientId));
}