openH5 static method
Implementation
static void openH5(String url) async {
Uri uri = Uri.parse(url);
if (!await launchUrl(uri, mode: LaunchMode.externalApplication)) {
throw 'Could not launch $uri';
}
}
static void openH5(String url) async {
Uri uri = Uri.parse(url);
if (!await launchUrl(uri, mode: LaunchMode.externalApplication)) {
throw 'Could not launch $uri';
}
}