PrerenderOptions constructor

const PrerenderOptions({
  1. String? waitForSelector,
  2. int timeout = 5000,
  3. bool waitForNetworkIdle = true,
  4. Map<String, dynamic>? data,
})

Implementation

const PrerenderOptions({
  this.waitForSelector,
  this.timeout = 5000,
  this.waitForNetworkIdle = true,
  this.data,
});