Forecastday constructor

Forecastday({
  1. String? date,
  2. int? dateEpoch,
  3. Day? day,
  4. Astro? astro,
  5. List<Hour>? hour,
})

Implementation

Forecastday({
  this.date,
  this.dateEpoch,
  this.day,
  this.astro,
  this.hour,
});