FaceApiParams constructor

FaceApiParams({
  1. String url = "https://faceapi.regulaforensics.com",
  2. String mode = "match",
  3. int threshold = 75,
  4. FaceApiSearchParams? searchParams,
  5. int serviceTimeout = 3000,
  6. String? proxy,
  7. String? proxyPassword,
  8. int? proxyType,
})

Implementation

FaceApiParams(
    {String url = "https://faceapi.regulaforensics.com",
    String mode = "match",
    int threshold = 75,
    FaceApiSearchParams? searchParams,
    int serviceTimeout = 3000,
    String? proxy,
    String? proxyPassword,
    int? proxyType})
    : _url = url,
      _mode = mode,
      _threshold = threshold,
      _searchParams = searchParams,
      _serviceTimeout = serviceTimeout,
      _proxy = proxy,
      _proxyPassword = proxyPassword,
      _proxyType = proxyType;