MLImageSegmentationAnalyzerSetting.create constructor

MLImageSegmentationAnalyzerSetting.create({
  1. required String path,
  2. int? analyzerType,
  3. int? scene,
  4. bool? exactMode,
})

Implementation

factory MLImageSegmentationAnalyzerSetting.create({
  required String path,
  int? analyzerType,
  int? scene,
  bool? exactMode,
}) {
  return MLImageSegmentationAnalyzerSetting._(
    path: path,
    analyzerType: analyzerType,
    scene: scene,
    exactMode: exactMode,
  );
}