LinkTextSpan constructor
Implementation
LinkTextSpan({
required TextStyle style,
required Uri url,
String? text,
}) : super(
style: style,
text: '${text ?? url}',
recognizer: TapGestureRecognizer()..onTap = () => launchUrl(url),
);