openBrowser function

Future<void> openBrowser()

Opens the browser

Implementation

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