FutureWeatherListBean.fromJson constructor

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

Implementation

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