openUrl static method
Implementation
static openUrl(String path) async {
if (!await launchUrl(Uri.parse(path), webOnlyWindowName: '_blank')) {
throw Exception('Could not launch $path');
}
}
static openUrl(String path) async {
if (!await launchUrl(Uri.parse(path), webOnlyWindowName: '_blank')) {
throw Exception('Could not launch $path');
}
}