VSSelectionArea constructor

const VSSelectionArea({
  1. required Widget child,
  2. Key? key,
})

The base selection area

Used inside VSNodeView to add a selction area to the node view

Hold "Alt" to select items or unselect seleted items

Implementation

const VSSelectionArea({
  required this.child,
  super.key,
});