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