OpenGraph constructor

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

Creates an OpenGraph metadata configuration.

Implementation

const OpenGraph({
  this.title,
  this.description,
  this.image,
  this.type = 'website',
  this.url,
  this.siteName,
});