DetectFacesRequest constructor

DetectFacesRequest(
  1. Uint8List image,
  2. DetectFacesConfig config, {
  3. String? tag,
})

Implementation

DetectFacesRequest(
  Uint8List image,
  DetectFacesConfig config, {
  String? tag,
})  : _image = image,
      _configuration = config,
      _tag = tag;