getLogRootPath method

  1. @override
Future<String?> getLogRootPath()
override

获取日志根路径(Web 端不支持,返回 null)。

Implementation

@override

/// 获取日志根路径(Web 端不支持,返回 null)。
Future<String?> getLogRootPath() async {
  // Web 无文件系统根路径,返回 null。
  return null;
}