Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ttorii20 committed May 20, 2024
1 parent 7fdbd92 commit 7fa0aeb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flutter_secure_storage/lib/options/android_options.dart
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class AndroidOptions extends Options {
'storageCipherAlgorithm': describeEnum(_storageCipherAlgorithm),
'sharedPreferencesName': sharedPreferencesName ?? '',
'preferencesKeyPrefix': preferencesKeyPrefix ?? '',
'masterKeyAlias': _masterKeyAlias ?? '',
'masterKeyAlias': _masterKeyAlias,
'useBiometric': '$_useBiometric',
'authenticationValidityDurationSeconds':
'$_authenticationValidityDurationSeconds',
Expand Down
2 changes: 1 addition & 1 deletion flutter_secure_storage/lib/options/apple_options.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ abstract class AppleOptions extends Options {
if (_groupId != null) 'groupId': _groupId!,
'synchronizable': '$_synchronizable',
if (_accessControlCreateFlags != null)
'accessControlCreateFlags': describeEnum(_accessControlCreateFlags!),
'accessControlCreateFlags': _accessControlCreateFlags!.name,
};
}

0 comments on commit 7fa0aeb

Please sign in to comment.