Config constructor

Config({
  1. bool forceFetch = false,
  2. UserAgentDevice userAgent = UserAgentDevice.mobile,
  3. required Map<String, List<Parser>> parsers,
  4. required List<Target> targets,
  5. Map<String, String>? headers,
  6. String? proxy,
  7. String? asinPrepend,
})

Implementation

Config({
  this.forceFetch = false,
  this.userAgent = UserAgentDevice.mobile,
  required this.parsers,
  required this.targets,
  this.headers,
  this.proxy,
  this.asinPrepend,
});