blob: 66291c1715f591736c30090fa06202770d2d89b0 [file] [log] [blame] [view]
# index property
*[<Null safety>](https://dart.dev/null-safety)*
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;
```