status property

Set<LayerViewStatus> status

The status of a layer in the view.

Implementation

Set<LayerViewStatus> get status {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_LayerViewState_getStatus(
      _handle,
      errorHandler,
    );
  });
  return fromCoreValueBitMask<LayerViewStatus>(
    LayerViewStatus.values,
    coreValue,
  );
}