CreateDetectorVersionResult.fromJson constructor
Implementation
factory CreateDetectorVersionResult.fromJson(Map<String, dynamic> json) {
return CreateDetectorVersionResult(
detectorId: json['detectorId'] as String?,
detectorVersionId: json['detectorVersionId'] as String?,
status: (json['status'] as String?)?.toDetectorVersionStatus(),
);
}