OpenGraphData constructor

const OpenGraphData({
  1. String? title,
  2. String? description,
  3. String? image,
  4. String? url,
  5. String? type,
  6. String? siteName,
})

Implementation

const OpenGraphData({
  this.title,
  this.description,
  this.image,
  this.url,
  this.type,
  this.siteName,
});