isEditing property
bool
get
isEditing
Whether the annotation is currently in edit mode.
When true, the annotation is being edited (e.g., text editing in sticky notes).
Reading this inside an Observer widget automatically tracks changes.
Implementation
bool get isEditing => _isEditing.value;
set
isEditing
(bool value)
Implementation
set isEditing(bool value) => runInAction(() => _isEditing.value = value);