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