forEach method

void forEach(
  1. void callback(
    1. String,
    2. Keyset
    )
)

Iterate over each keyset.

Implementation

void forEach(void Function(String, Keyset) callback) {
  for (var entry in _store.entries) {
    callback(entry.key, entry.value);
  }
}