fun equals(other: Any?): Boolean
Returns true if other is a Headers object with the same headers, with the same casing, in
the same order. Note that two headers instances may be semantically equal but not equal
according to this method. In particular, none of the following sets of headers are equal
according to this method:
Content-Type: text/html
Content-Length: 50
Content-Length: 50
Content-Type: text/html
content-type: text/html
content-length: 50
Content-Type: text/html
Content-Length: 050
Applications that require semantically equal headers should convert them into a canonical form before comparing them for equality.