putDecoded<T> method
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,
);
}