OpenGraphData constructor

const OpenGraphData({
  1. String? title,
  2. String? type,
  3. String? url,
  4. String? site,
  5. String? siteName,
  6. String? description,
  7. String? determiner,
  8. String? locale,
  9. List<OgImage>? images,
  10. List<OgVideo>? videos,
  11. List<OgAudio>? audios,
})

Builds an OpenGraphData.

Implementation

const OpenGraphData({
  this.title,
  this.type,
  this.url,
  this.site,
  this.siteName,
  this.description,
  this.determiner,
  this.locale,
  this.images,
  this.videos,
  this.audios,
});