showPingAnimationSymbol property
True if the LocationDisplay.pingAnimationSymbol is shown, false otherwise.
Implementation
bool get showPingAnimationSymbol {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_LocationDisplay_getShowPingAnimationSymbol(
_handle, errorHandler);
});
}
Implementation
set showPingAnimationSymbol(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_LocationDisplay_setShowPingAnimationSymbol(
_handle, value, errorHandler);
});
}