keys method

Iterable<String> keys()

Returns an iterator iterates through all keys of the key/value pairs contained in the FormData.

MDN reference

Implementation

Iterable<String> keys() => _storage.map((element) => element.$1).toSet();