Content constructor

const Content({
  1. Key? key,
  2. Telegram? telegramShare,
  3. Instagram? instagramShare,
  4. Facebook? facebookShare,
  5. Whatsapp? whatsappShare,
  6. Twitter? twitterShare,
  7. ScreenshotController? screenshotController,
  8. More? moreShare,
  9. bool? showTextShare = true,
  10. String? copyToClipboard,
})

Implementation

const Content(
    {Key? key,
    this.telegramShare,
    this.instagramShare,
    this.facebookShare,
    this.whatsappShare,
    this.twitterShare,
    this.screenshotController,
    this.moreShare,
    this.showTextShare = true,
    this.copyToClipboard})
    : super(key: key);