launchUrl static method
Implementation
static void launchUrl(BuildContext context, String url) => canLaunch(url).then((value) {
value ? launch(url, enableJavaScript: true) :
showCustomAlertDialog(context, MultiLanguage.get('msg_not_open_link'));
});