removeAttribute method

void removeAttribute(
  1. String key
)

Removes an attribute from the request.

Implementation

void removeAttribute(String key) {
  // Since RequestParams doesn't have a remove method, we set it to null
  setAttribute(key, null);
}