removeEntry method
Removes a drawer entry from the overlay stack.
Triggers a rebuild to update the overlay display after removing the specified entry.
Parameters:
entry(DrawerOverlayEntry, required): Entry to remove
Implementation
void removeEntry(DrawerOverlayEntry entry) {
if (mounted) {
setState(() {
_entries.remove(entry);
});
}
}