RegeocodeQuery.fromJson constructor

RegeocodeQuery.fromJson(
  1. Map<String, dynamic> json
)

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'];
}