ShareButton constructor

const ShareButton({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. Color color = Colors.red,
  4. IconData icon = CupertinoIcons.share,
})

Implementation

const ShareButton(
    {super.key,
    this.onPressed,
    this.color = Colors.red,
    this.icon = CupertinoIcons.share});