LikeButton constructor

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

Implementation

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