apiHeaders top-level constant

List<String> const apiHeaders

List of HTTP headers used by the library.

The headers are used as the value for the headers parameter in http.request.

Implementation

const List<String> apiHeaders = [
  "Content-Type",
  "Accept",
  "Authorization"
];