import 'dart:collection'; class TestIterable extends IterableBase { List list = []; Iterator get iterator => list.iterator; }