isPropertySupported static method

bool isPropertySupported(
  1. InAppWebViewSettingsProperty property, {
  2. TargetPlatform? platform,
})

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

Implementation

static bool isPropertySupported(
  InAppWebViewSettingsProperty property, {
  TargetPlatform? platform,
}) => _InAppWebViewSettingsPropertySupported.isPropertySupported(
  property,
  platform: platform,
);