openBrowser function
Opens the browser
Implementation
Future<void> openBrowser() async {
try {
await _platform.openBrowser(null);
} catch (error, stackTrace) {
Error.throwWithStackTrace(error, stackTrace);
}
}
Opens the browser
Future<void> openBrowser() async {
try {
await _platform.openBrowser(null);
} catch (error, stackTrace) {
Error.throwWithStackTrace(error, stackTrace);
}
}