LatLng.fromMap constructor

LatLng.fromMap(
  1. Map map
)

map => LatLng

Implementation

LatLng.fromMap(Map map) : assert(map != null) {
  latitude = map['latitude'];
  longitude = map['longitude'];
}