WeatherModel constructor

WeatherModel({
  1. String? weatherCode,
  2. String? minTemp,
  3. String? maxTemp,
  4. String? windSpeed,
  5. String? hum,
  6. String? currentTemp,
})

Implementation

WeatherModel({
  this.weatherCode,
  this.minTemp,
  this.maxTemp,
  this.windSpeed,
  this.hum,
  this.currentTemp,
});