FaceApiSearchParams constructor

FaceApiSearchParams({
  1. int limit = 100,
  2. double threshold = 1,
  3. List<int>? groupIds,
})

Implementation

FaceApiSearchParams({
  int limit = 100,
  double threshold = 1,
  List<int>? groupIds,
}) : _limit = limit,
     _threshold = threshold,
     _groupIds = groupIds;