GeoPoint.fromMap constructor

GeoPoint.fromMap(
  1. Map m
)

Implementation

GeoPoint.fromMap(
  Map m,
)   : latitude = double.parse(m["lat"].toString()),
      longitude = double.parse(m["lon"].toString());