GoogleGeocodingLocation.fromJson constructor Null safety

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

GoogleGeocodingLocation From Json factory

Implementation

factory GoogleGeocodingLocation.fromJson(Map<String, dynamic> json) =>
    GoogleGeocodingLocation(
      lat: json['lat'] as double,
      lng: json['lng'] as double,
    );