WindContract constructor

WindContract({
  1. required Speed speed,
  2. required Azimuth direction,
  3. WindContractGusts? gusts,
})

Returns a new WindContract instance.

Implementation

WindContract({
  required this.speed,
  required this.direction,
  this.gusts,
});