remove method

void remove(
  1. String key
)

Removes a value from the parsed body.

Implementation

void remove(String key) {
  _parsedBody?.remove(key);
}