openWithSystemBrowser static method

Future<void> openWithSystemBrowser({
  1. required WebUri url,
})

This is a static method that opens an url in the system browser. You wont be able to use the PlatformInAppBrowser methods here!

Officially Supported Platforms/Implementations:

  • Android native WebView
  • iOS
  • MacOS

Implementation

static Future<void> openWithSystemBrowser({required WebUri url}) =>
    PlatformInAppBrowser.static().openWithSystemBrowser(url: url);