Wind constructor

Wind({
  1. String? direction,
  2. String? speed,
})

Implementation

Wind({String? direction, String? speed}) {
  _direction = Direction(direction);
  _speed = Speed(speed);
}