DetectionResult.fromJson constructor
Implementation
factory DetectionResult.fromJson(Map<String, dynamic> json) =>
DetectionResult(
detectionMode: json["detectionMode"],
imagePath: json["imagePath"].toString(),
timeMilis: json["timeMilis"] ?? 1000,
);