launchUrl static method
Implementation
static Future<bool> launchUrl(
String url, {
bool isInExternalMode = true,
}) async => await ul.launchUrl(
Uri.parse(url),
mode: isInExternalMode
? LaunchMode.externalApplication
: LaunchMode.platformDefault,
);