refetch method

Future<T?> refetch()

Manually triggers a fresh background revalidation.

Example:

final freshData = await userQuery.refetch();

Implementation

Future<T?> refetch() async {
  return _executeFetch();
}