canChangeVisibility property

  1. @override
bool canChangeVisibility
override

A flag indicating whether the layer content's visibility can be changed.

A flag indicating whether the layer content visibility can be changed. Will return false if an error occurs.

Implementation

@override
bool get canChangeVisibility {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ArcGISSublayer_getCanChangeVisibility(
        _handle, errorHandler);
  });
}