isPropertySupported method
- dynamic property, {
- TargetPlatform? platform,
Check if the given property is supported by the defaultTargetPlatform or a specific platform.
Implementation
bool isPropertySupported(dynamic property, {TargetPlatform? platform}) =>
property is PlatformWebStorageCreationParamsProperty
? params.isPropertySupported(property, platform: platform)
: _PlatformWebStoragePropertySupported.isPropertySupported(
property,
platform: platform,
);