isPropertySupported static method

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

Check if the current class is supported by the defaultTargetPlatform or a specific platform.

Implementation

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