1. override
bool canTransitionFrom(TransitionRoute nextRoute)

Whether this route can perform a transition from the given route.

Subclasses can override this method to restrict the set of routes they need to coordinate transitions with.

Source

@override
bool canTransitionFrom(TransitionRoute<dynamic> nextRoute) {
  return nextRoute is MaterialPageRoute<dynamic>;
}