openWithSystemBrowser 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
Future<void> openWithSystemBrowser({required WebUri url}) {
throw UnimplementedError(
'openWithSystemBrowser is not implemented on the current platform');
}