putDecoded<T> method

Future<T> putDecoded<T>(
  1. String path, {
  2. QueryMap? query,
  3. HeadersInit? headers,
  4. Object? body,
  5. Object? json,
  6. RequestOptions? options,
  7. Decoder<T>? decoder,
})

Implementation

Future<T> putDecoded<T>(
  String path, {
  QueryMap? query,
  HeadersInit? headers,
  Object? body,
  Object? json,
  RequestOptions? options,
  Decoder<T>? decoder,
}) {
  return requestDecoded<T>(
    'PUT',
    path,
    query: query,
    headers: headers,
    body: body,
    json: json,
    options: options,
    decoder: decoder,
  );
}