CLCmdWeatherData constructor

CLCmdWeatherData({
  1. required int month,
  2. required int day,
  3. required int type,
  4. required int temperature_low,
  5. required int temperature_high,
  6. required int aqi,
})

Implementation

CLCmdWeatherData(
    {required this.month,
    required this.day,
    required this.type,
    required this.temperature_low,
    required this.temperature_high,
    required this.aqi});