showPingAnimationSymbol property

bool showPingAnimationSymbol

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

Implementation

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

Implementation

set showPingAnimationSymbol(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_LocationDisplay_setShowPingAnimationSymbol(
      _handle,
      value,
      errorHandler,
    );
  });
}