keys property

Returns an Iterable allowing to go through all keys contained in this object.

Implementation

Iterable<String> get keys sync* {
  for (final entry in entries) {
    yield entry.key;
  }
}