DetectorDebugOption.fromJson constructor
Implementation
factory DetectorDebugOption.fromJson(Map<String, dynamic> json) {
return DetectorDebugOption(
detectorModelName: json['detectorModelName'] as String,
keyValue: json['keyValue'] as String?,
);
}