patchUri<T> abstract method

Future<Response<T>> patchUri<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 PATCH request with Uri.

Implementation

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