toggleEditing method

  1. @override
void toggleEditing({
  1. bool notify = true,
})
inherited

Toggle the editing status of the current cell.

Implementation

@override
void toggleEditing({bool notify = true}) => setEditing(
      !(isEditing == true),
      notify: notify,
    );