indices property

Iterable<int> indices

Implementation

Iterable<int> get indices sync* {
  var index = 0;
  while (index <= lastIndex) {
    yield index++;
  }
}