add method

void add(
  1. LoggerResultInterface loggerLoggerResultInterface
)

_historyList に追加する.

Implementation

void add(LoggerResultInterface loggerLoggerResultInterface) {
    final history = History.fromResult(loggerLoggerResultInterface);
    _historyList.add(history);
}