launchURL function
Implementation
Future<void> launchURL(final String url, {LaunchMode mode = LaunchMode.externalApplication}) async => launchUrl(
Uri.parse(url),
mode: mode,
);
Future<void> launchURL(final String url, {LaunchMode mode = LaunchMode.externalApplication}) async => launchUrl(
Uri.parse(url),
mode: mode,
);