AvailabilityTypeWeb constructor
AvailabilityTypeWeb({})
Constructs an instance of AvailabilityTypeWeb.
hasPasskeySupport
: Indicates if the platform supports passkeys.isNative
: Should befalse
for web platforms.isUserVerifyingPlatformAuthenticatorAvailable
: Optional; whether user verifying platform authenticators are available.isConditionalMediationAvailable
: Optional; whether conditional mediation is available on the web platform.
Implementation
AvailabilityTypeWeb({
required super.hasPasskeySupport,
required super.isNative,
required this.isUserVerifyingPlatformAuthenticatorAvailable,
required this.isConditionalMediationAvailable,
});