from method

Iterable<Record> from(
  1. String? name
)

Records from a logger with the given name. Pass null to find records from loggers with no name.

Implementation

Iterable<Record> from(String? name) =>
    _records.where((r) => r.loggerName == name);