Wind constructor

Wind(
  1. num speed,
  2. num deg,
  3. num? gust
)

Creates a Wind object

Implementation

Wind(
  this.speed,
  this.deg,
  this.gust,
);