LazyLoadConfig constructor

const LazyLoadConfig({
  1. bool handleLazyLoading = true,
  2. bool useHeadlessBrowser = true,
  3. int maxScrollDepth = 10,
  4. double scrollStepSize = 1.0,
  5. int scrollDelayMs = 500,
  6. int maxWaitTimeMs = 30000,
  7. bool clickLoadMoreButtons = true,
  8. bool waitForNetworkIdle = true,
  9. bool waitForDomContentLoaded = true,
})

Creates a new LazyLoadConfig

Implementation

const LazyLoadConfig({
  this.handleLazyLoading = true,
  this.useHeadlessBrowser = true,
  this.maxScrollDepth = 10,
  this.scrollStepSize = 1.0,
  this.scrollDelayMs = 500,
  this.maxWaitTimeMs = 30000,
  this.clickLoadMoreButtons = true,
  this.waitForNetworkIdle = true,
  this.waitForDomContentLoaded = true,
});