getDatabaseRootPath static method

Future<String> getDatabaseRootPath()

Implementation

static Future<String> getDatabaseRootPath() async {
  final externalDir = await pathprovider.getExternalStorageDirectory();
  return externalDir?.path ?? await sqlite.getDatabasesPath();
}