values method

Iterable<String> values()

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

MDN reference

Implementation

Iterable<String> values() => _storage.map((e) => e.$2);