JavaScriptLogLevel enum

Represents the severity of a JavaScript log message.

Inheritance

Constructors

JavaScriptLogLevel()
const

Values

error → const JavaScriptLogLevel

Indicates an error message was logged via an "error" event of the console.error method.

warning → const JavaScriptLogLevel

Indicates a warning message was logged using the console.warning method.

debug → const JavaScriptLogLevel

Indicates a debug message was logged using the console.debug method.

info → const JavaScriptLogLevel

Indicates an informational message was logged using the console.info method.

log → const JavaScriptLogLevel

Indicates a log message was logged using the console.log method.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

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