CurrentForecast constructor

CurrentForecast({
  1. String? forecastText,
  2. String? forecastType,
  3. String? forecastID,
  4. DateTime? publishedDate,
  5. DateTime? fromDate,
  6. DateTime? toDate,
  7. String? forecastBand,
  8. String? forecastSummary,
  9. String? nO2Band,
  10. String? o3Band,
  11. String? pM10Band,
  12. String? pM25Band,
  13. String? sO2Band,
})

Implementation

CurrentForecast({
  this.forecastText,
  this.forecastType,
  this.forecastID,
  this.publishedDate,
  this.fromDate,
  this.toDate,
  this.forecastBand,
  this.forecastSummary,
  this.nO2Band,
  this.o3Band,
  this.pM10Band,
  this.pM25Band,
  this.sO2Band,
});