Users constructor

Users({
  1. String? weather,
  2. String? clouds,
  3. String? time,
  4. List<SportsYouCanDo>? sportsYouCanDo,
  5. List<AnyMap>? anyMap,
})

Implementation

Users({
  this.weather,
  this.clouds,
  this.time,
  this.sportsYouCanDo,
  this.anyMap,
});