AvailabilityTypeAndroid constructor
AvailabilityTypeAndroid({})
Constructs an instance of AvailabilityTypeAndroid.
hasPasskeySupport
: Indicates if the platform supports passkeys.isNative
: Should betrue
for Android platforms.isUserVerifyingPlatformAuthenticatorAvailable
: Required; whether user verifying platform authenticators are available.
Implementation
AvailabilityTypeAndroid({
required super.hasPasskeySupport,
required super.isNative,
required this.isUserVerifyingPlatformAuthenticatorAvailable,
});