openBox<E> abstract method

Future<IsolatedBox<E>> openBox<E>(
  1. String name, {
  2. HiveCipher? encryptionCipher,
  3. KeyComparator? keyComparator,
  4. CompactionStrategy? compactionStrategy,
  5. bool crashRecovery = true,
  6. String? path,
  7. Uint8List? bytes,
  8. String? collection,
})

Open a box in the isolate

Implementation

Future<IsolatedBox<E>> openBox<E>(
  String name, {
  HiveCipher? encryptionCipher,
  KeyComparator? keyComparator,
  CompactionStrategy? compactionStrategy,
  bool crashRecovery = true,
  String? path,
  Uint8List? bytes,
  String? collection,
});