SelectionState<T> constructor

const SelectionState<T>({
  1. required List<Node<T>> nodes,
  2. required List<Connection> connections,
  3. required List<Annotation> annotations,
})

Implementation

const SelectionState({
  required this.nodes,
  required this.connections,
  required this.annotations,
});