LinkButton constructor

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

Implementation

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