RegeocodeQuery.fromJson constructor
Implementation
RegeocodeQuery.fromJson(Map<String, dynamic> json) {
latLonType = json['latLonType'];
poiType = json['poiType'];
point = json['point'] != null ? LatLng.fromJson(json['point']) : null;
radius = json['radius'];
}