clearSelection method

void clearSelection()

Implementation

void clearSelection() {
  if (_disposed) return;
  if (_selection == null) return;
  _selection = null;
  _emitSelection(null);
  _notifyIfAlive();
}