xxxxxxxxxx
import 'package:flutter_markdown/flutter_markdown.dart';
import 'package:url_launcher/url_launcher.dart';
final String _markdownData = "-This is [Google link](https://www.google.com)";
// view
MarkdownBody(
data: _markdownData,
onTapLink: (text, url, title){
launchUrl(Uri.parse(url)); /*For url_launcher 6.1.0 and higher*/
// launch(url); /*For url_launcher 6.0.20 and lower*/
},
)