build method
Implementation
@override
Widget build(
BuildContext context,
String text,
TextStyle? style,
final void Function(String url, String title)? onLinkTab,
) {
var match = exp.firstMatch(text.trim());
return CustomCb(
value: ("${match?[1]}" == "x"),
child: MdWidget(
"${match?[2]}",
onLinkTab: onLinkTab,
style: style,
),
);
}