isPropertySupported static method
- dynamic property, {
- TargetPlatform? platform,
Check if the given property is supported by the defaultTargetPlatform or a specific platform.
The property should be one of the PlatformWebAuthenticationSessionProperty or PlatformWebAuthenticationSessionCreationParamsProperty values.
Implementation
static bool isPropertySupported(
dynamic property, {
TargetPlatform? platform,
}) => PlatformWebAuthenticationSession.static().isPropertySupported(
property,
platform: platform,
);