getFetchingId abstract method
Extract the ID (or key) from GoRouterState which will be passed to fetch.
Example:
@override
String getFetchingId(GoRouterState state) =>
state.pathParameters['id']!;
Implementation
String getFetchingId(GoRouterState state);