StepAdjustment.fromJson constructor

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

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