AvailabilityTypeWindows constructor

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

Constructs an instance of AvailabilityTypeWindows.

  • hasPasskeySupport: Indicates if the platform supports passkeys.
  • isNative: Should be true for Windows platforms.
  • isUserVerifyingPlatformAuthenticatorAvailable: Required; whether Windows Hello or other platform authenticators are available.

Implementation

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