put<T> method
Implementation
@override
Future<Response> put<T>(
String path, dynamic body, HttpOptions? options) async {
return _execute(() async {
final response = await client.put(path, data: body);
return DioResponse<T>(response.headers.map, json.decode(response.data),
response.statusCode);
});
}