getDbNameBibleWithOutExtension method

Future<String> getDbNameBibleWithOutExtension()

Implementation

Future<String> getDbNameBibleWithOutExtension() async {
  var data = await getDbNameBible();
  return data.replaceAll('.db', '');
}