GeoPoint.fromLatLng constructor

GeoPoint.fromLatLng(
  1. LatLng value
)

Creates the GeoPoint instance using LatLng.

Implementation

GeoPoint.fromLatLng(LatLng value) : this(value.latitude, value.longitude);