FaceModel constructor

FaceModel({
  1. required DetectionType detectionType,
  2. required String title,
  3. bool checked = true,
})

Implementation

FaceModel({
  required this.detectionType,
  required this.title,
  this.checked = true,
});