GoogleGeocodingGeometry.fromJson constructor
Implementation
factory GoogleGeocodingGeometry.fromJson(Map<String, dynamic> json) =>
GoogleGeocodingGeometry(
location: GoogleGeocodingLocation.fromJson(
json['location'] as Map<String, dynamic>,
),
locationType: json['location_type'] as String? ?? '',
viewport: GoogleGeocodingViewport.fromJson(
json['viewport'] as Map<String, dynamic>,
),
);