setRequestHeader method Null safety

void setRequestHeader(
  1. String name,
  2. String value
)

Sets the value of an HTTP request header.

This method should be called after the request is opened, but before the request is sent.

Multiple calls with the same header will combine all their values into a single header.

Other resources

Implementation

void setRequestHeader(String name, String value) native;