copyWithWrapped method

EmployersSearchRequest copyWithWrapped({
  1. Wrapped<String?>? clientId,
  2. Wrapped<String?>? secret,
  3. Wrapped<String>? query,
  4. Wrapped<List<String>>? products,
})

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));
}