getAll method

Iterable<String> getAll(
  1. String name
)

Returns all the values associated with a given search parameter.

MDN reference

Implementation

Iterable<String> getAll(String name) =>
    _storage.where((e) => e.equalsIgnoreCase(name)).map((e) => e.$2);