useQueryClient function
A hook to get the QueryClient from the current context.
Implementation
QueryClient useQueryClient() {
final context = useContext();
return QueryProvider.of(context);
}
A hook to get the QueryClient from the current context.
QueryClient useQueryClient() {
final context = useContext();
return QueryProvider.of(context);
}