Parallel download option (#1169)

This commit is contained in:
Imran Remtulla
2023-12-21 15:44:38 -05:00
parent 80bddf8a6b
commit 1bc2ec9461
21 changed files with 68 additions and 14 deletions

View File

@@ -425,4 +425,13 @@ class SettingsProvider with ChangeNotifier {
prefs?.setBool('exportSettings', val);
notifyListeners();
}
bool get parallelDownloads {
return prefs?.getBool('parallelDownloads') ?? false;
}
set parallelDownloads(bool val) {
prefs?.setBool('parallelDownloads', val);
notifyListeners();
}
}