Creates a Wind object from json
factory Wind.fromJson(Map<String, dynamic> json) { return Wind( json['speed'], json['deg'], json['gust'], ); }