Weather constructor

Weather(
  1. Coordinates coord,
  2. List<Details> details,
  3. Temperature temperature,
  4. int visibility,
  5. Wind wind,
  6. num clouds,
  7. Rain rain,
  8. Snow snow,
  9. int dt,
  10. int timezone,
  11. int sunrise,
  12. int sunset,
  13. int id,
  14. String name,
)

Creates a Weather object

Implementation

Weather(
  this.coord,
  this.details,
  this.temperature,
  this.visibility,
  this.wind,
  this.clouds,
  this.rain,
  this.snow,
  this.dt,
  this.timezone,
  this.sunrise,
  this.sunset,
  this.id,
  this.name,
);