putUri<T> abstract method

Future<Response<T>> putUri<T>(
  1. Uri uri,
  2. {Object? data,
  3. Options? options,
  4. CancelToken? cancelToken,
  5. ProgressCallback? onSendProgress,
  6. ProgressCallback? onReceiveProgress}
)

Convenience method to make an HTTP PUT request with Uri.

Implementation

Future<Response<T>> putUri<T>(
  Uri uri, {
  Object? data,
  Options? options,
  CancelToken? cancelToken,
  ProgressCallback? onSendProgress,
  ProgressCallback? onReceiveProgress,
});