Checks if key exists in body or query.
bool has(String key) { return (_bodyParser.body != null && _bodyParser.body!.containsKey(key)) || _queryParams.containsKey(key); }