WeatherMsg constructor

WeatherMsg({
  1. String city = '',
  2. String description = '',
  3. List<WeatherMsgData> data = const [],
})

Implementation

WeatherMsg({
  this.city = '',
  this.description = '',
  this.data = const [],
});