MacOsOptions constructor
const
MacOsOptions({
- String? accountName = AppleOptions.defaultAccountName,
- String? groupId,
- KeychainAccessibility? accessibility = KeychainAccessibility.unlocked,
- bool synchronizable = false,
- String? label,
- String? description,
- String? comment,
- bool? isInvisible,
- bool? isNegative,
- DateTime? creationDate,
- DateTime? lastModifiedDate,
- int? resultLimit,
- bool? shouldReturnPersistentReference,
- String? authenticationUIBehavior,
- List<
AccessControlFlag> accessControlFlags = const [], - bool usesDataProtectionKeychain = true,
Creates an instance of MacosOptions
with configurable parameters
for keychain access and storage behavior.
Implementation
const MacOsOptions({
super.accountName,
super.groupId,
super.accessibility,
super.synchronizable,
super.label,
super.description,
super.comment,
super.isInvisible,
super.isNegative,
super.creationDate,
super.lastModifiedDate,
super.resultLimit,
super.shouldReturnPersistentReference,
super.authenticationUIBehavior,
super.accessControlFlags,
this.usesDataProtectionKeychain = true,
});