MmOpenGraph constructor

MmOpenGraph({
  1. String? type,
  2. String? url,
  3. String? title,
  4. String? description,
  5. String? determiner,
  6. String? siteName,
  7. String? locale,
  8. List<String> localesAlternate = const [],
  9. List<MmOpenGraphImagesInner> images = const [],
  10. List<MmOpenGraphVideosInner> videos = const [],
  11. List<MmOpenGraphAudiosInner> audios = const [],
  12. MmOpenGraphArticle? article,
  13. MmOpenGraphBook? book,
  14. MmOpenGraphArticleAuthorsInner? profile,
})

Returns a new MmOpenGraph instance.

Implementation

MmOpenGraph({
  this.type,
  this.url,
  this.title,
  this.description,
  this.determiner,
  this.siteName,
  this.locale,
  this.localesAlternate = const [],
  this.images = const [],
  this.videos = const [],
  this.audios = const [],
  this.article,
  this.book,
  this.profile,
});