exportLogs static method
导出日志文件
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 [];
}