ContinuousParameterRange.fromJson constructor
Implementation
factory ContinuousParameterRange.fromJson(Map<String, dynamic> json) {
return ContinuousParameterRange(
maxValue: json['MaxValue'] as double,
minValue: json['MinValue'] as double,
name: json['Name'] as String,
scalingType: (json['ScalingType'] as String?)?.toScalingType(),
);
}