showAccuracy property
True if the LocationDisplay.accuracySymbol is shown, false otherwise.
Implementation
bool get showAccuracy {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_LocationDisplay_getShowAccuracy(
_handle, errorHandler);
});
}
Implementation
set showAccuracy(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_LocationDisplay_setShowAccuracy(
_handle, value, errorHandler);
});
}