shouldFetch method

bool shouldFetch(
  1. TRouteData data
)

Optional pre-condition before fetching.

Return false to skip fetch() and directly call buildScreen with fetched == null.

Example:

  • If routeData already contains a fully loaded model, you can skip fetch.

Implementation

bool shouldFetch(TRouteData data) => true;