launchInExternalBrowser method
Implementation
Future<void> launchInExternalBrowser() async {
try {
await launchUrl(
Uri.parse('https://flutter.dev'),
prefersDeepLink: false,
);
} catch (e) {
debugPrint(e.toString());
}
}