handlesURLScheme static method

Future<bool> handlesURLScheme(
  1. String urlScheme
)

Returns a Boolean value that indicates whether WebKit natively supports resources with the specified URL scheme.

urlScheme represents the URL scheme associated with the resource.

NOTE for iOS: available only on iOS 11.0+.

NOTE for MacOS: available only on MacOS 10.13+.

Officially Supported Platforms/Implementations:

Implementation

static Future<bool> handlesURLScheme(String urlScheme) =>
    PlatformInAppWebViewController.static().handlesURLScheme(urlScheme);