contains method

bool contains(
  1. String name
)

Implementation

bool contains(String name) {
  return _headers.containsKey(name.toLowerCase());
}