putForJson static method

Future<Map<String, dynamic>> putForJson(
  1. String url, {
  2. String? body,
  3. Map<String, String>? queryParameters,
  4. Map<String, String>? headers,
})

Sends a HTTP PUT request to the given url with the given body, queryParameters and headers. Returns the response as a map using json.decode.

Implementation

static Future<Map<String, dynamic>> putForJson(String url,
    {String? body,
    Map<String, String>? queryParameters,
    Map<String, String>? headers}) async {
  return await _put(url,
      body: body,
      queryParameters: queryParameters,
      headers: headers,
      returnType: HttpRequestReturnType.JSON) as Map<String, dynamic>;
}