removeParam method

WebRequest removeParam(
  1. String key
)

Removes a parameter from the request.

key - The key of the parameter to remove.

Returns the current WebRequest instance for method chaining.

Implementation

WebRequest removeParam(String key) {
  _params.remove(key);
  return this;
}