refetch on external data change support added

This commit is contained in:
Kingkor Roy Tirtho
2022-07-05 09:28:43 +06:00
parent 5f8935a015
commit afa9933c91
5 changed files with 46 additions and 14 deletions
@@ -6,6 +6,7 @@ import 'package:flutter/material.dart';
final jobWithExternalData = QueryJob<String, double>(
queryKey: "query-external-data",
cacheTime: const Duration(seconds: 10),
refetchOnExternalDataChange: false,
task: (queryKey, data) {
return Future.delayed(const Duration(milliseconds: 500),
() => "Hello from $queryKey with $data");