isEditing property

bool isEditing

Whether currently in the editing mode.

Implementation

bool get isEditing => _isEditing;
void isEditing=(bool newValue)

Implementation

set isEditing(bool newValue) {
  _isEditing = newValue;
  notifyListeners();
}