WantedPersonStatus enum
The status of a wanted person case.
Values
- na → const WantedPersonStatus
-
Not applicable
const WantedPersonStatus('na')
- captured → const WantedPersonStatus
-
The individual has been apprehended or taken into custody by law enforcement.
const WantedPersonStatus('captured')
- recovered → const WantedPersonStatus
-
The individual has been recovered.
const WantedPersonStatus('recovered')
- located → const WantedPersonStatus
-
The individual has been located, but not captured or recovered.
const WantedPersonStatus('located')
- surrendered → const WantedPersonStatus
-
The wanted person has voluntarily turned themselves in to law enforcement.
const WantedPersonStatus('surrendered')
- deceased → const WantedPersonStatus
-
The person in question has died.
const WantedPersonStatus('deceased')
- unknown → const WantedPersonStatus
-
const WantedPersonStatus('Unknown')
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
- value → String
-
The string representation of this WantedPersonStatus.
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
Static Methods
-
fromString(
String value) → WantedPersonStatus -
Get an WantedPersonStatus from a given string
value
.
Constants
-
values
→ const List<
WantedPersonStatus> - A constant List of the values in this enum, in order of their declaration.