openLink method
Implementation
Future<void> openLink(BuildContext context, String url, String title) async {
if (await canLaunchUrl(Uri.parse(url))) {
await launchUrl(Uri.parse(url));
} else {
TextToast("Could not open link: $url").open(context);
}
}