FaceApiSearchParams constructor

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

Implementation

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