loadTafsirDownloadIndices method

Future<void> loadTafsirDownloadIndices()

شرح: تحميل أرقام التفسير المحملة Explanation: Load downloaded tafsir indices

Implementation

Future<void> loadTafsirDownloadIndices() async {
  var rawList = box.read('tafsirDownloadIndices');
  List<int> savedIndices =
      rawList is List ? rawList.map((e) => e as int).toList() : [3, 5];
  tafsirDownloadIndexList.value = savedIndices;
}