refetch method

Future<List<TPage>?> refetch()

Manually re-fetches the first page from scratch and replaces all accumulated pages.

Resets page tracking to initialPageParam and refreshes the query cache.

await feedQuery.refetch();

Implementation

Future<List<TPage>?> refetch() async => _executeInitialFetch();