location property

Future<LatLng> location

Implementation

Future<LatLng> get location {
  return platform(
    android: (pool) =>
        _androidModel.getLatLonPoint().then((it) => LatLng.android(it)),
    ios: (pool) => _iosModel.get_location().then((it) => LatLng.ios(it)),
  );
}