values property

Iterable values

Returns an Iterable allowing to go through all values contained in this object.

Implementation

Iterable<dynamic> get values sync* {
  for (final entry in entries) {
    yield entry.value;
  }
}