insertAll method
Inserts all entries at the top of the overlay stack.
Implementation
void insertAll(Iterable<OverlayEntry> entries) {
setState(() {
for (final entry in entries) {
entry._overlayState = this;
_entries.add(entry);
}
});
}