onDragMove method
Called during a drag operation as the node moves.
Implementation
@override
void onDragMove(Offset delta, NodeDragContext context) {
// Move all contained nodes along with this group
if (_containedNodeIds != null && _containedNodeIds!.isNotEmpty) {
context.moveNodes(_containedNodeIds!, delta);
}
}