isMethodSupported static method

bool isMethodSupported(
  1. PlatformInAppBrowserMethod property, {
  2. TargetPlatform? platform,
})
override

Check if the given method is supported by the defaultTargetPlatform or a specific platform.

Implementation

static bool isMethodSupported(
  PlatformInAppBrowserMethod property, {
  TargetPlatform? platform,
}) => PlatformInAppBrowser.static().isMethodSupported(
  property,
  platform: platform,
);