FutureWeatherBean.fromJson constructor

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

Implementation

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