moveDraggableToTop static method
Implementation
static void moveDraggableToTop(BuildContext context, GlobalKey anchorKey) {
OverlayEntry entry = _activeDraggableEntries[anchorKey]!;
entry.remove();
Overlay.of(context).insert(entry, above: null);
}