OEmbedData constructor

OEmbedData({
  1. String? title,
  2. String? authorName,
  3. String? authorUrl,
  4. String? type,
  5. int? height,
  6. int? width,
  7. String? version,
  8. String? providerName,
  9. String? providerUrl,
  10. int? thumbnailHeight,
  11. int? thumbnailWidth,
  12. String? thumbnailUrl,
  13. String? html,
})

Constructs a new OEmbedData instance.

Implementation

OEmbedData({
  this.title,
  this.authorName,
  this.authorUrl,
  this.type,
  this.height,
  this.width,
  this.version,
  this.providerName,
  this.providerUrl,
  this.thumbnailHeight,
  this.thumbnailWidth,
  this.thumbnailUrl,
  this.html,
});