Skip to content

Commit

Permalink
doc: add docs for apple options
Browse files Browse the repository at this point in the history
  • Loading branch information
juliansteenbakker committed Aug 13, 2024
1 parent 3487bc7 commit 25d2037
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions flutter_secure_storage/lib/options/apple_options.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,24 @@ abstract class AppleOptions extends Options {

static const defaultAccountName = 'flutter_secure_storage_service';

/// A key with a value that’s a string indicating the access group the item is in.
///
/// (kSecAttrAccessGroup)
final String? _groupId;

/// A key whose value is a string indicating the item's service.
///
/// (kSecAttrService)
final String? _accountName;

/// A key with a value that indicates when the keychain item is accessible.
/// https://developer.apple.com/documentation/security/ksecattraccessible?language=swift
/// (kSecAttrAccessible)
final KeychainAccessibility _accessibility;

/// A key with a value that’s a string indicating whether the item synchronizes through iCloud.
///
/// (kSecAttrSynchronizable)
final bool _synchronizable;

@override
Expand Down

0 comments on commit 25d2037

Please sign in to comment.