DetectorDebugOption.fromJson constructor

DetectorDebugOption.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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