didPop method
Called when this State is popped off a route.
Implementation
// To override WidgetsBindingObserver.didPop()
@override
void didPop() {
// Record the triggered event
assert(() {
if (_debugPrintEvents) {
debugPrint('$_consoleLeadingLine didPop() in $_consoleClassName');
}
return true;
}());
}