HttpHeaders class
An array of HTTP headers. Each header is represented as a dictionary
containing the keys name
and either value
or binaryValue
.
class HttpHeaders extends ChromeObject { HttpHeaders(); HttpHeaders.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy); }
Extends
ChromeObject > HttpHeaders
Constructors
new HttpHeaders() #
Create a new instance of a ChromeObject
, which creates and delegates to
a JsObject proxy.
docs inherited from ChromeObject
HttpHeaders();
new HttpHeaders.fromProxy(JsObject jsProxy) #
Create a new instance of a ChromeObject
, which delegates to the given
JsObject proxy.
docs inherited from ChromeObject
HttpHeaders.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
Properties
Methods
String toString() #
inherited from ChromeObject
Returns a string representation of this object.
docs inherited from Object
String toString() => jsProxy.toString();