insert static method

void insert(
  1. OverlayEntry entry, {
  2. OverlayEntry? above,
  3. OverlayEntry? below,
})

Overlay Actions

Implementation

static void insert(
  OverlayEntry entry, {
  OverlayEntry? above,
  OverlayEntry? below,
}) {
  _stackRouter?.insert(entry, above: above, below: below);
}