$GoogleTypeLatLng.fromJson constructor

$GoogleTypeLatLng.fromJson(
  1. Map json_
)

Implementation

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