CommentButton constructor

const CommentButton({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. Color color = Colors.blue,
  4. IconData icon = CupertinoIcons.chat_bubble,
})

Implementation

const CommentButton(
    {super.key,
    this.onPressed,
    this.color = Colors.blue,
    this.icon = CupertinoIcons.chat_bubble});