isPropertySupported method

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

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

Implementation

bool isPropertySupported(
  PlatformWebStorageCreationParamsProperty property, {
  TargetPlatform? platform,
}) => _PlatformWebStorageCreationParamsPropertySupported.isPropertySupported(
  property,
  platform: platform,
);