launchURL static method
Implementation
static Future<void> launchURL(final String url, {final LaunchMode mode = LaunchMode.platformDefault}) async => launchUrl(
Uri.parse(url),
mode: mode,
webOnlyWindowName: kIsWeb ? "_self" : null,
);