StepAdjustment.fromJson constructor
Implementation
factory StepAdjustment.fromJson(Map<String, dynamic> json) {
return StepAdjustment(
scalingAdjustment: json['ScalingAdjustment'] as int,
metricIntervalLowerBound: json['MetricIntervalLowerBound'] as double?,
metricIntervalUpperBound: json['MetricIntervalUpperBound'] as double?,
);
}