isPropertySupported static method

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

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

Implementation

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