SearchPersonRequest constructor
SearchPersonRequest(
- ImageUpload image, {
- List<
String> ? groupIdsForSearch, - double? threshold,
- int? limit,
- bool detectAll = false,
- 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;