iterator property
override
Returns an iterator over the elements in the list.
The iterator provides access to the elements of the list in the same order as they appear in the list.
Each call to next
returns the next element in the list until there are no more elements.
Example usage:
List<int> numbers = [1, 2, 3, 4, 5];
Iterator<int> iterator = numbers.iterator;
while (iterator.moveNext()) {
print(iterator.current);
}
Implementation
@override
Iterator<JsonRow> get iterator => _table.iterator;