DailySituation constructor

DailySituation({
  1. int? cnWeatherId,
  2. int? weatherId,
  3. String? windDir,
  4. int? windLevel,
  5. int? windSpeed,
})

Implementation

DailySituation({
  this.cnWeatherId,
  this.weatherId,
  this.windDir,
  this.windLevel,
  this.windSpeed,
});