exportLogs static method

Future<List<File>> exportLogs({
  1. DateTime? startDate,
  2. DateTime? endDate,
})

导出日志文件

Implementation

static Future<List<File>> exportLogs({DateTime? startDate, DateTime? endDate}) async {
  if (instance._engine != null) {
    return await instance._engine!.exportLogs(startDate: startDate, endDate: endDate);
  }
  return [];
}