CurveDatum.fromJson constructor
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"],
);