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