selectAllConnections method

void selectAllConnections()

Selects all connections in the graph.

Example:

controller.selectAllConnections();

Implementation

void selectAllConnections() {
  runInAction(() {
    _selectedConnectionIds.clear();
    _selectedConnectionIds.addAll(_connections.map((c) => c.id));
  });
}