clearChapterCache method

Future<bool> clearChapterCache(
  1. String chapterId
)

Clear audio cache for specific chapter

Implementation

Future<bool> clearChapterCache(String chapterId) async {
  return await BackgroundAudioConverter.deleteAudioFile(chapterId, _config.audioFormat);
}