lastKnown property

bool lastKnown

Indicates whether this is an outdated device position retrieved and cached earlier and therefore not guaranteed to represent the current location.

Implementation

bool get lastKnown {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Location_getLastKnown(
      _handle,
      errorHandler,
    );
  });
}