SocialMeta constructor

SocialMeta({
  1. String? title,
  2. String? description,
  3. String? imageUrl,
})

Creates a SocialMeta object with optional title, description, and imageUrl.

Implementation

SocialMeta({
  this.title,
  this.description,
  this.imageUrl,
});