goToURL function
Implementation
goToURL(BuildContext context, String url, title) async {
if (Platform.isWindows || Platform.isMacOS || Platform.isLinux) {
launchURL(url);
return;
}
}
goToURL(BuildContext context, String url, title) async {
if (Platform.isWindows || Platform.isMacOS || Platform.isLinux) {
launchURL(url);
return;
}
}