FutureWeatherBean.fromJson constructor
Implementation
factory FutureWeatherBean.fromJson(Map<String, dynamic> json) => FutureWeatherBean(
weatherId: json["weatherId"],
lowTemperature: json["lowTemperature"],
highTemperature: json["highTemperature"],
);