unregisterPopEntry method
Unregisters a PopEntry in the route's widget subtree.
See also:
- registerPopEntry, which performs the opposite operation.
Implementation
void unregisterPopEntry(PopEntry<Object?> popEntry) {
_popEntries.remove(popEntry);
popEntry.canPopNotifier.removeListener(_maybeDispatchNavigationNotification);
_maybeDispatchNavigationNotification();
}