CurveDatum.fromJson constructor

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

Implementation

factory CurveDatum.fromJson(Map<String, dynamic> json) => CurveDatum(
  serNum: json["serNum"],
  targetUnitType: json["targetUnitType"],
  barSet: json["barSet"].toDouble(),
  flowSet: json["flowSet"].toDouble(),
  timeSet: json["timeSet"].toDouble(),
  weightSet: json["weightSet"].toDouble(),
  intervalTime: json["intervalTime"],
);