has method

bool has(
  1. String key
)

check if input is present

Implementation

bool has(String key) {
  return request.has(key);
}