isVisible property

bool get isVisible

Whether the annotation is visible.

When false, the annotation is hidden from the canvas. Reading this inside an Observer widget automatically tracks changes.

Implementation

bool get isVisible => _isVisible.value;
set isVisible (bool value)

Implementation

set isVisible(bool value) => runInAction(() => _isVisible.value = value);