employersSearchPost method
Future<Response<EmployersSearchResponse> >
employersSearchPost({
- required EmployersSearchRequest? body,
Search employer database
Implementation
Future<chopper.Response<EmployersSearchResponse>> employersSearchPost(
{required EmployersSearchRequest? body}) {
generatedMapping.putIfAbsent(
EmployersSearchResponse, () => EmployersSearchResponse.fromJsonFactory);
return _employersSearchPost(body: body);
}