getAll method

List<String> getAll(
  1. String key
)

Returns all values for key.

Implementation

List<String> getAll(String key) {
  return _uri.queryParametersAll[key] ?? const [];
}