RequestOptions constructor

const RequestOptions({
  1. Map<String, String>? headers,
  2. Duration? timeout,
  3. String? baseUrlOverride,
  4. bool includeToken = true,
  5. Map<String, String> extraHeaders = const {},
})

Implementation

const RequestOptions({
  this.headers,
  this.timeout,
  this.baseUrlOverride,
  this.includeToken = true,
  this.extraHeaders = const {},
});