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