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