WeatherMsgData constructor

WeatherMsgData({
  1. String date = '',
  2. String code = '',
  3. double min = 0,
  4. double max = 0,
})

Implementation

WeatherMsgData({
  this.date = '',
  this.code = '',
  this.min = 0,
  this.max = 0,
});