openWithSystemBrowser static method
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
- Windows
Implementation
static Future<void> openWithSystemBrowser({required WebUri url}) =>
PlatformInAppBrowser.static().openWithSystemBrowser(url: url);