launchLink static method
Implementation
static void launchLink({
required String link,
}) {
launchUrl(
Uri.parse(link).withScheme,
mode: LaunchMode.externalApplication,
);
}
static void launchLink({
required String link,
}) {
launchUrl(
Uri.parse(link).withScheme,
mode: LaunchMode.externalApplication,
);
}