ContinuousParameterRange.fromJson constructor

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

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(),
  );
}