auto-refresh suspected csv, put url in dev_config

This commit is contained in:
stopflock
2025-10-14 22:15:52 -05:00
parent 08f017fb0f
commit 7ace123b4b
5 changed files with 15 additions and 11 deletions
+2 -2
View File
@@ -37,8 +37,8 @@ class SuspectedLocationState extends ChangeNotifier {
DateTime? get lastFetchTime => _service.lastFetchTime;
/// Initialize the state
Future<void> init() async {
await _service.init();
Future<void> init({bool offlineMode = false}) async {
await _service.init(offlineMode: offlineMode);
notifyListeners();
}