copyWithWrapped method
Implementation
EmployersSearchRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<String>? query,
Wrapped<List<String>>? products}) {
return EmployersSearchRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret),
query: (query != null ? query.value : this.query),
products: (products != null ? products.value : this.products));
}