Put constructor

const Put({
  1. String url = "/",
  2. Map<String, String> headers = const {},
  3. bool authenticated = true,
})

Implementation

const Put(
    {String url: "/",
    Map<String, String> headers: const {},
    bool authenticated = true})
    : super(HttpMethod.Put,
          url: url, headers: headers, authenticated: authenticated);