GoogleGeocodingLocation.fromJson constructor Null safety
GoogleGeocodingLocation From Json factory
Implementation
factory GoogleGeocodingLocation.fromJson(Map<String, dynamic> json) =>
GoogleGeocodingLocation(
lat: json['lat'] as double,
lng: json['lng'] as double,
);