showAccuracy property

bool showAccuracy

True if the LocationDisplay.accuracySymbol is shown, false otherwise.

Implementation

bool get showAccuracy {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_LocationDisplay_getShowAccuracy(
      _handle,
      errorHandler,
    );
  });
}
void showAccuracy=(bool value)

Implementation

set showAccuracy(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_LocationDisplay_setShowAccuracy(
      _handle,
      value,
      errorHandler,
    );
  });
}