getIsVersionBibleDownload method
Implementation
Future<bool> getIsVersionBibleDownload({ required String fileName }) async {
sharedPref = await _sharedPreferences;
return sharedPref.getBool("getIs${fileName.split('.').first.toUpperCase()}Download") ?? false;
}