unsubscribeState method
Remove the State object as a route observer.
Implementation
bool unsubscribeState(RouteAware? object) {
//
final un = object != null;
if (un) {
unsubscribe(object);
}
return un;
}
Remove the State object as a route observer.
bool unsubscribeState(RouteAware? object) {
//
final un = object != null;
if (un) {
unsubscribe(object);
}
return un;
}