Dart DocumentationlogEntry

Entry class

A single log entry.

class Entry {
 final Level level;
 final List<String> lines;

 Entry(this.level, this.lines);
}

Constructors

new Entry(Level level, List<String> lines) #

Creates a new Object instance.

Object instances have no meaningful state, and are only useful through their identity. An Object instance is equal to itself only.

docs inherited from Object
Entry(this.level, this.lines);

Properties

final Level level #

final Level level

final List<String> lines #

final List<String> lines