Weather constructor

Weather({
  1. String? conditions,
  2. double? temperature,
  3. double? humidity,
  4. String? wind,
})

Creates a new Weather instance

Implementation

Weather({this.conditions, this.temperature, this.humidity, this.wind});