AnnotationDragContext constructor

const AnnotationDragContext({
  1. required void moveNodes(
    1. Set<String> nodeIds,
    2. Offset delta
    ),
  2. required Set<String> findNodesInBounds(
    1. Rect bounds
    ),
  3. required Node? getNode(
    1. String nodeId
    ),
})

Implementation

const AnnotationDragContext({
  required this.moveNodes,
  required this.findNodesInBounds,
  required this.getNode,
});