LxState enum

LxState represent the different state of a data.

By default a data can have 4 different states that covers most of the use cases Initial : Represent the default state for a data. Could be before a loading/success/error flow, or just the one default state. By default, every data/view will starts with this state. Loading : Represent a loading state for the data, if applicable. Success : Represent an success state for a data. Could also be for a loaded data Error : Represent an error state for a data, if applicable.

Inheritance

Constructors

LxState()
const

Values

Initial → const LxState
Loading → const LxState
Success → const LxState
Error → const LxState

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