RequestOptions constructor

const RequestOptions({
  1. CancellationToken? cancelToken,
  2. RetryPolicy? retry,
  3. ProgressCallback? onSendProgress,
  4. ProgressCallback? onReceiveProgress,
  5. int? timeout,
  6. bool skipDeduplication = false,
})

Implementation

const RequestOptions({
  this.cancelToken,
  this.retry,
  this.onSendProgress,
  this.onReceiveProgress,
  this.timeout,
  this.skipDeduplication = false,
});