blob: d1ee4ce36490595358afc3f86a32f44720757bcd [file] [log] [blame] [view]
# index property
int index
_<span class="feature">inherited</span>_
<p>A numeric identifier for the enumerated value.</p>
<p>The values of a single enumeration are numbered
consecutively from zero to one less than the
number of values.
This is also the index of the value in the
enumerated type's static <code>values</code> list.</p>
## Implementation
```dart
int get index;
```