apiMethod top-level constant

List<String> const apiMethod

List of HTTP methods used by the library.

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

Implementation

const List<String> apiMethod = [
  "POST",
  "GET",
  "PUT",
  "DELETE"
];