refetch method
Manually triggers a network re-fetch for this query, returning the resolved result.
await userQuery.refetch();
Implementation
Future<T?> refetch() async => _executeFetch();
Manually triggers a network re-fetch for this query, returning the resolved result.
await userQuery.refetch();
Future<T?> refetch() async => _executeFetch();