ApiGetRequestOptions constructor

const ApiGetRequestOptions({
  1. Map<String, String>? headers,
  2. bool noAuth = false,
  3. bool cache = true,
  4. Duration? cacheTtl,
  5. bool forceRefresh = false,
  6. bool invalidateCache = false,
})

Implementation

const ApiGetRequestOptions({
  super.headers,
  super.noAuth,
  this.cache = true,
  this.cacheTtl,
  this.forceRefresh = false,
  this.invalidateCache = false,
});