isEditing property
bool
get
isEditing
Gets the current editing state.
Implementation
bool get isEditing => _isEditing.value;
set
isEditing
(bool value)
Sets the editing state.
Implementation
set isEditing(bool value) => runInAction(() => _isEditing.value = value);