LogLevel enum

Used to assign severity or importance to a LogMessage

A LogWriter can also filter messages based of their LogLevel

Inheritance
Implemented types
Available extensions

Values

fine → const LogLevel
const LogLevel(0, 'FINE')
debug → const LogLevel
const LogLevel(1, 'DEBUG')
info → const LogLevel
const LogLevel(2, 'INFO')
warning → const LogLevel
const LogLevel(3, 'WARNING')
error → const LogLevel
const LogLevel(4, 'ERROR')

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String
final
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value int
final

Methods

compareTo(LogLevel other) int
Compares this object to another object.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator <(LogLevel other) bool
operator ==(Object other) bool
The equality operator.
inherited
operator >(LogLevel other) bool
operator >=(LogLevel other) bool

Constants

values → const List<LogLevel>
A constant List of the values in this enum, in order of their declaration.