records property

Iterable<(K, V)> get records

A list of key-value records in this map. Allows easier iteration than entries.

Implementation

Iterable<(K, V)> get records sync* {
  for (final entry in entries) {
    yield (entry.key, entry.value);
  }
}