started property

bool started

True if the location display is currently active (the LocationDataSource has been started), false otherwise.

Implementation

bool get started {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_LocationDisplay_getStarted(
      _handle,
      errorHandler,
    );
  });
}