DescribeDetectorResponse.fromJson constructor
Implementation
factory DescribeDetectorResponse.fromJson(Map<String, dynamic> json) {
return DescribeDetectorResponse(
detector: json['detector'] != null
? Detector.fromJson(json['detector'] as Map<String, dynamic>)
: null,
);
}