onDescriptionLinkTapped property

ValueChanged<String>? onDescriptionLinkTapped
final

A callback invoked when a link in the description is tapped.

The caller is responsible for handling link opening behavior (for example with url_launcher or an in-app WebView).

Example:

onDescriptionLinkTapped: (link) async {
  await launchUrl(Uri.parse(link));
},

Implementation

final ValueChanged<String>? onDescriptionLinkTapped;