FutureWeatherListBean.fromJson constructor
Implementation
factory FutureWeatherListBean.fromJson(Map<String, dynamic> json) =>
FutureWeatherListBean(
future: List<FutureWeatherBean>.from(
json["future"].map((x) => FutureWeatherBean.fromJson(x)),
),
);