put<T> method
Sends a PUT request to path with an optional body.
Implementation
Future<FlexResponse<T>> put<T>(
String path, {
Map<String, String>? headers,
dynamic body,
T Function(dynamic)? decoder,
}) =>
_request<T>('PUT', path, headers: headers, body: body, decoder: decoder);