logList method

Future<List<LogValue>> logList()

Get a list of logs recorded.

記録されたログの一覧を取得します。

Implementation

Future<List<LogValue>> logList() async {
  final list = await Future.wait(
    adapters.map((e) => e.logList()),
  );
  return list.expand((e) => e).toList(growable: false);
}