AvailabilityTypeIOS constructor
AvailabilityTypeIOS({})
Constructs an instance of AvailabilityTypeIOS.
hasPasskeySupport
: Indicates if the platform supports passkeys.isNative
: Should betrue
for iOS platforms.hasBiometrics
: Required; indicates if the device has biometric support.
Implementation
AvailabilityTypeIOS({
required super.hasPasskeySupport,
required super.isNative,
required this.hasBiometrics,
});