LinkButton constructor

const LinkButton({
  1. Key? key,
  2. required String text,
  3. required GptMarkdownConfig config,
  4. required Color color,
  5. required Color hoverColor,
  6. VoidCallback? onPressed,
  7. TextStyle? textStyle,
  8. String? url,
})

Implementation

const LinkButton(
    {super.key,
    required this.text,
    required this.config,
    required this.color,
    required this.hoverColor,
    this.onPressed,
    this.textStyle,
    this.url});