AvailabilityTypeAndroid constructor

AvailabilityTypeAndroid({
  1. required bool hasPasskeySupport,
  2. required bool isNative,
  3. required bool? isUserVerifyingPlatformAuthenticatorAvailable,
})

Constructs an instance of AvailabilityTypeAndroid.

  • hasPasskeySupport: Indicates if the platform supports passkeys.
  • isNative: Should be true for Android platforms.
  • isUserVerifyingPlatformAuthenticatorAvailable: Required; whether user verifying platform authenticators are available.

Implementation

AvailabilityTypeAndroid({
  required super.hasPasskeySupport,
  required super.isNative,
  required this.isUserVerifyingPlatformAuthenticatorAvailable,
});