$GoogleTypeLatLng.fromJson constructor
$GoogleTypeLatLng.fromJson(
- Map json_
Implementation
$GoogleTypeLatLng.fromJson(core.Map json_)
: this(
latitude: (json_['latitude'] as core.num?)?.toDouble(),
longitude: (json_['longitude'] as core.num?)?.toDouble(),
);