WeatherForecastData.fromJson constructor

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

Factory constructor to create an instance of WeatherForecastData from a JSON map

Takes a json map and returns an instance of WeatherForecastData.

Implementation

factory WeatherForecastData.fromJson(Map<String, dynamic> json) =>
    _$WeatherForecastDataFromJson(json);