copyWith method

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

Implementation

EmployersSearchRequest copyWith(
    {String? clientId,
    String? secret,
    String? query,
    List<String>? products}) {
  return EmployersSearchRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      query: query ?? this.query,
      products: products ?? this.products);
}