employersSearchPost method

Future<Response<EmployersSearchResponse>> employersSearchPost({
  1. required EmployersSearchRequest? body,
})

Search employer database

Implementation

Future<chopper.Response<EmployersSearchResponse>> employersSearchPost(
    {required EmployersSearchRequest? body}) {
  generatedMapping.putIfAbsent(
      EmployersSearchResponse, () => EmployersSearchResponse.fromJsonFactory);

  return _employersSearchPost(body: body);
}