TodayWeatherBean constructor

TodayWeatherBean({
  1. required String? city,
  2. required String? lunar,
  3. required String? festival,
  4. required int? pm25,
  5. required int? temp,
  6. required int? weatherId,
})

Implementation

TodayWeatherBean({
  required this.city,
  required this.lunar,
  required this.festival,
  required this.pm25,
  required this.temp,
  required this.weatherId,
});