RequestOptions constructor

const RequestOptions({
  1. String? baseUrl,
  2. Map<String, String>? headers,
  3. Duration? timeout,
  4. bool skipInterceptors = false,
  5. Map<String, dynamic>? extra,
})

Implementation

const RequestOptions({
  this.baseUrl,
  this.headers,
  this.timeout,
  this.skipInterceptors = false,
  this.extra,
});