Level enum

Represents the importance of its Response.

Inheritance
Available extensions

Values

critical → const Level

If a Response has the critical Level, it implies the end of the working unit at this point. Whatever happened was a critical error for the entire chain of steps.

The user have to do something to make the working unit even work.

const Level(4)
error → const Level

If a Response has the error Level, it implies the end of the current Bubble. Therefore you can say, that whatever happened does influence the following Step to not be able to do their work. The user

The user have to do something to ensure the functionality of the currently working unit.

const Level(3)
warning → const Level

If a Response has the warning Level, it implies that something unexpected happened, that does not hold the following steps back from doing their work, but shouldn't really happen.

The user should be aware of this response.

const Level(2)
status → const Level

If a Response has the status Level, it just wants to let you something know. It isn't important that the user sees this, but if he wants to know whats going on, he defiantly should take a look at this response.

The user can take a look at this response.

const Level(1)
verbose → const Level

If a Response has the verbose Level, it is just for debugging purposes or to find out,

If the user wants extra information, they should look at this response.

const Level(0)

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
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

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<Level>
A constant List of the values in this enum, in order of their declaration.