factory Location.fromJson(Map<String, dynamic> json) { return Location( latLng: json["latLng"] == null ? null : High.fromJson(json["latLng"]), ); }