values method

Iterable<String> values()

Returns an iterator allowing you to go through all values of the key/value pairs contained in this object.

MDN Reference

Implementation

Iterable<String> values() => keys().map((e) => get(e)).whereType();