AvailabilityTypeIOS constructor

AvailabilityTypeIOS({
  1. required bool hasPasskeySupport,
  2. required bool isNative,
  3. required bool hasBiometrics,
})

Constructs an instance of AvailabilityTypeIOS.

  • hasPasskeySupport: Indicates if the platform supports passkeys.
  • isNative: Should be true for iOS platforms.
  • hasBiometrics: Required; indicates if the device has biometric support.

Implementation

AvailabilityTypeIOS({
  required super.hasPasskeySupport,
  required super.isNative,
  required this.hasBiometrics,
});