Wind constructor

Wind({
  1. required float direction,
  2. required float speed,
  3. required float speedZ,
})

Implementation

Wind({
  required this.direction,
  required this.speed,
  required this.speedZ,
});