Root directory for the current application. Equivalent to getApplicationDocumentsDirectory().path.
getApplicationDocumentsDirectory().path
Future<String> get rootPath async { _rootPath ??= (await getApplicationDocumentsDirectory()).path; return _rootPath!; }