records property
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);
}
}
A list of key-value records in this map. Allows easier iteration than entries
.
Iterable<(K, V)> get records sync* {
for (final entry in entries) {
yield (entry.key, entry.value);
}
}