values property

Iterable<V> values

Returns an Iterable of the map values, in the same order as the keys. If you need to sort the values, please use toValueIList.

Implementation

Iterable<V> get values {
  return _m.values;
}