UpdateDetectorModelResponse.fromJson constructor

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

Implementation

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