getLastKnownPosition method

Future<Position?> getLastKnownPosition({
  1. bool forceLocationManager = false,
})

Returns the last known position stored on the users device.

On Android you can force the plugin to use the old Android LocationManager implementation over the newer FusedLocationProvider by passing true to the forceLocationManager parameter. On iOS this parameter is ignored. When no position is available, null is returned. Throws a PermissionDeniedException when trying to request the device's location when the user denied access.

Implementation

Future<Position?> getLastKnownPosition({
  bool forceLocationManager = false,
}) {
  throw UnimplementedError(
    'getLastKnownPosition() has not been implemented.',
  );
}