Browse Source

export kdbx icons.

remove-cryptography-dependency
Herbert Poul 5 years ago
parent
commit
e19a6e3737
  1. 1
      lib/kdbx.dart
  2. 2
      lib/src/kdbx_entry.dart

1
lib/kdbx.dart

@ -2,6 +2,7 @@
library kdbx; library kdbx;
export 'src/crypto/protected_value.dart' show ProtectedValue, StringValue, PlainValue; export 'src/crypto/protected_value.dart' show ProtectedValue, StringValue, PlainValue;
export 'src/kdbx_consts.dart';
export 'src/kdbx_entry.dart'; export 'src/kdbx_entry.dart';
export 'src/kdbx_format.dart'; export 'src/kdbx_format.dart';
export 'src/kdbx_header.dart' export 'src/kdbx_header.dart'

2
lib/src/kdbx_entry.dart

@ -51,7 +51,7 @@ class KdbxEntry extends KdbxObject {
} }
final bool isHistoryEntry; final bool isHistoryEntry;
List<KdbxEntry> _history; List<KdbxEntry> _history;
List<KdbxEntry> get history => _history ??= (() { List<KdbxEntry> get history => _history ??= (() {

Loading…
Cancel
Save