entries method

Iterable<(String, String)> entries()

Returns an iterator allowing iteration through all key/value pairs contained in this object in the same order as they appear in the query string.

MDN reference

Implementation

Iterable<(String name, String value)> entries() => _storage;