clearMcpConnectorSelections method

void clearMcpConnectorSelections({
  1. bool notify = true,
})

Implementation

void clearMcpConnectorSelections({bool notify = true}) {
  if (_selectedMcpConnectors.isEmpty) {
    return;
  }

  _selectedMcpConnectors.clear();
  if (notify) {
    notifyListeners();
  }
}