markNeedsBuild method
void
markNeedsBuild()
Marks this entry as needing a rebuild.
Triggers the overlay's setState to schedule a rebuild of the
overlay stack, which will call this entry's builder again.
Implementation
void markNeedsBuild() {
_overlayState?.setState(() {});
}