isVisible property
bool
get
isVisible
Gets the current visibility state.
Implementation
bool get isVisible => _isVisible.value;
set
isVisible
(bool value)
Sets the visibility state.
Implementation
set isVisible(bool value) => runInAction(() => _isVisible.value = value);