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