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