refresh method
Refresh value of data by recall fetch.
Set isQuiet = true to avoid rendering loading state, default false.
Implementation
Future<void> refresh({bool isQuiet = false}) async {
_error = null;
_isLoading = true;
if (_isMounted && !isQuiet) notifyListeners();
await _fetchData();
}