getDataBasePath method

Future<String> getDataBasePath()

Implementation

Future<String> getDataBasePath() async{
  String path=_dataBasePath?? await PathProviderManager.getInstance().getDocumentsDirectoryPath();
  return "$path/$_dataBaseName";
}