keys method

Iterable<String> keys()

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

MDN reference

Implementation

Iterable<String> keys() => _storage.map((e) => e.$1);