put<T> static method
put请求
Implementation
static Future<T> put<T>(
String url, {
Options? options,
Object? data,
Map<String, dynamic>? queryParameters,
}) async {
return safeRequest<T>(
url,
options: options?.copyWith(method: 'PUT') ?? Options(method: 'PUT'),
data: data,
queryParameters: queryParameters,
);
}