WebPage constructor

WebPage({
  1. String? extra,
  2. int? client_id,
  3. string? url,
  4. string? display_url,
  5. string? type,
  6. string? site_name,
  7. string? title,
  8. FormattedText? description,
  9. Photo? photo,
  10. string? embed_url,
  11. string? embed_type,
  12. int32? embed_width,
  13. int32? embed_height,
  14. int32? duration,
  15. string? author,
  16. Animation? animation,
  17. Audio? audio,
  18. Document? document,
  19. Sticker? sticker,
  20. Video? video,
  21. VideoNote? video_note,
  22. VoiceNote? voice_note,
  23. int32? instant_view_version,
})

Implementation

WebPage({
  super.extra,
  super.client_id,
  this.url,
  this.display_url,
  this.type,
  this.site_name,
  this.title,
  this.description,
  this.photo,
  this.embed_url,
  this.embed_type,
  this.embed_width,
  this.embed_height,
  this.duration,
  this.author,
  this.animation,
  this.audio,
  this.document,
  this.sticker,
  this.video,
  this.video_note,
  this.voice_note,
  this.instant_view_version,
});