initializeComics method
Инициализация комикса
Implementation
Future<void> initializeComics(String? filePath) async {
await FileManager.deleteFolder();
await FileManager.createFolders();
if (filePath != null && !filePath.startsWith('<')) {
await ZipUtils.unzip(filePath, await FileManager.tempFolder);
}
_comics = await Comics.load();
_updateViewModels();
notifyListeners();
}