openWithSystemBrowser 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

Future<void> openWithSystemBrowser({required WebUri url}) {
  throw UnimplementedError(
      'openWithSystemBrowser is not implemented on the current platform');
}