appDirectory property

Directory get appDirectory

应用本地存储目录(此目录存放的是应用全局配置信息,它不能用来存放用户数据)

Implementation

Directory get appDirectory {
  assert(!kIsWeb, 'ElStorageService Error: 不要在 web 环境下访问 appDirectory');
  assert(_appDirectory != null, 'ElStorageService Error: appDirectory 还未初始化');
  return _appDirectory!;
}