iterate method

Iterable<T> iterate()

Implementation

Iterable<T> iterate() sync* {
  for (var index in orderedMap) {
    yield data[index];
  }
}