SearchPersonRequest constructor

SearchPersonRequest(
  1. ImageUpload image, {
  2. List<String>? groupIdsForSearch,
  3. double? threshold,
  4. int? limit,
  5. bool detectAll = false,
  6. OutputImageParams? outputImageParams,
})

Implementation

SearchPersonRequest(
  ImageUpload image, {
  List<String>? groupIdsForSearch,
  double? threshold,
  int? limit,
  bool detectAll = false,
  OutputImageParams? outputImageParams,
})  : _imageUpload = image,
      _groupIdsForSearch = groupIdsForSearch,
      _threshold = threshold,
      _limit = limit,
      _detectAll = detectAll,
      _outputImageParams = outputImageParams;