TempInfo.fromJson constructor
Implementation
factory TempInfo.fromJson(Map<String, dynamic> json) => TempInfo(
tempTimeType: json["tempTimeType"] ?? "",
startTime: json["startTime"] ?? -1,
tempList: List<double>.from((json["tempList"] ?? []).map((x) => x.toDouble())),
);