factory Location.fromJson(Map<String, dynamic> json) { return Location( lon: json['lon'], lat: json['lat'], ); }