PrerenderConfig constructor

const PrerenderConfig({
  1. bool enabled = false,
  2. String? serviceUrl,
  3. List<String> botUserAgents = defaultBotUserAgents,
  4. List<String> excludeRoutes = const [],
  5. Duration? cacheDuration,
})

Implementation

const PrerenderConfig({
  this.enabled = false,
  this.serviceUrl,
  this.botUserAgents = defaultBotUserAgents,
  this.excludeRoutes = const [],
  this.cacheDuration,
});