WebPage constructor

const WebPage({
  1. required bool hasLargeMedia,
  2. required int id,
  3. required String url,
  4. required String displayUrl,
  5. required int hash,
  6. String? type,
  7. String? siteName,
  8. String? title,
  9. String? description,
  10. PhotoBase? photo,
  11. String? embedUrl,
  12. String? embedType,
  13. int? embedWidth,
  14. int? embedHeight,
  15. int? duration,
  16. String? author,
  17. DocumentBase? document,
  18. PageBase? cachedPage,
  19. List<WebPageAttributeBase>? attributes,
})

Web Page constructor.

Implementation

const WebPage({
  required this.hasLargeMedia,
  required this.id,
  required this.url,
  required this.displayUrl,
  required this.hash,
  this.type,
  this.siteName,
  this.title,
  this.description,
  this.photo,
  this.embedUrl,
  this.embedType,
  this.embedWidth,
  this.embedHeight,
  this.duration,
  this.author,
  this.document,
  this.cachedPage,
  this.attributes,
}) : super._();