WebPage constructor

WebPage({
  1. List<WebImage>? fullMatchingImages,
  2. String? pageTitle,
  3. List<WebImage>? partialMatchingImages,
  4. double? score,
  5. String? url,
})

Implementation

WebPage({
  this.fullMatchingImages,
  this.pageTitle,
  this.partialMatchingImages,
  this.score,
  this.url,
});