ProcessingState enum Null safety

Possible values: PROCESSING, FAILED, INVALID, VALID

Inheritance

Constructors

ProcessingState(String? matcher)
Possible values: PROCESSING, FAILED, INVALID, VALID
const

Values

processing → const ProcessingState

The app is currently being processed.

ProcessingState('PROCESSING')
failed → const ProcessingState

The app failed to process.

ProcessingState('FAILED')
invalid → const ProcessingState

The app is invalid.

ProcessingState('INVALID')
valid → const ProcessingState

The app is valid.

ProcessingState('VALID')

Properties

hashCode int
The hash code for this object.
read-only, inherited
index int
A numeric identifier for the enumerated value.
read-only, inherited
matcher String?
The string that matches the value of the processing state.
final
runtimeType Type
A representation of the runtime type of the object.
read-only, inherited

Methods

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

Operators

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

Static Methods

fromMatcher(String? matcher) ProcessingState
Possible values: PROCESSING, FAILED, INVALID, VALID

Constants

values → const List<ProcessingState>
A constant List of the values in this enum, in order of their declaration.
[processing, failed, invalid, valid]