keys property
The keys of this
.
The returned iterable has efficient length
and contains
operations
based on length and containsKey of the map.
Modifying the map while iterating the keys may break the iteration.
Implementation
@override
Iterable<K> get keys {
assert(_debugAssertNotDisposed());
return _map!.keys;
}