Creates a Location from JSON data.
factory Location.fromJson(Map<String, dynamic> json) { return Location( lat: json["lat"].toDouble(), lng: json["lng"].toDouble(), ); }