location property

Future<LatLng> location

Implementation

Future<LatLng> get location {
  return platform(
    android: (pool) async =>
        LatLng.android(await _androidModel?.getLatLonPoint()),
    ios: (pool) async => LatLng.ios(_iosModelLocation),
  );
}