HttpOptions constructor

const HttpOptions({
  1. Duration timeout = const Duration(milliseconds: 15000),
  2. bool useCache = true,
  3. String? cacheStoragePath = null,
  4. int? cacheMaxSize = null,
})

Implementation

const HttpOptions({
  this.timeout = const Duration(milliseconds: 15000),
  this.useCache = true,
  this.cacheStoragePath = null,
  this.cacheMaxSize = null
});