iterator property

  1. @override
Iterator<E> get iterator
override

Returns an iterator over the elements of this iterable.

The iterator is obtained from the current value, providing reactive access to the iterable's elements.

Implementation

@override
Iterator<E> get iterator => value.iterator;