addLogs method

void addLogs(
  1. List<InfospectLog> logs
)

Aggregates and adds multiple InfospectLog entries to the logger of the Infospect instance.

  • logs: The list of log entries to be added.

Implementation

void addLogs(List<InfospectLog> logs) {
  _infospect.infospectLogger.logs.addAll(logs);
}