isAttributionTextVisible property
True if attribution text is visible in the GeoViewController, false otherwise.
Implementation
bool get isAttributionTextVisible {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GeoView_getIsAttributionTextVisible(
_handle, errorHandler);
});
}
Implementation
set isAttributionTextVisible(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_GeoView_setIsAttributionTextVisible(
_handle, value, errorHandler);
});
_isAttributionTextVisibleChangedStreamController.add(value);
}