Wind constructor Null safety

Wind(
  1. {double speed = 0,
  2. int deg = 0,
  3. double gust = 0}
)

Implementation

Wind({
  this.speed = 0,
  this.deg = 0,
  this.gust = 0,
});