WebPage constructor

WebPage(
  1. String url, {
  2. bool deepCrawl = false,
})

Creates a new WebPage object.

  • url: URL of the web page that contains the content that you want to save for referencing.
  • deepCrawl: Boolean value for enabling deep crawl of the website if set to true. Default is false

Implementation

WebPage(this.url, {this.deepCrawl = false});