DescribeDetectorResponse.fromJson constructor

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

Implementation

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