isEventMethodSupported static method

bool isEventMethodSupported(
  1. PlatformInAppBrowserEventsMethod method, {
  2. TargetPlatform? platform,
})

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

Implementation

static bool isEventMethodSupported(
  PlatformInAppBrowserEventsMethod method, {
  TargetPlatform? platform,
}) =>
    PlatformInAppBrowserEvents.isMethodSupported(method, platform: platform);