launchWebsiteUrl static method
Launches a website using the provided URL.
Implementation
static void launchWebsiteUrl(String address) async {
final Uri url = Uri.parse(address);
if (!await launchUrl(url)) {
if (kDebugMode) print('Could not launch $url');
}
}