HiveCollectionsDatabase constructor

HiveCollectionsDatabase(
  1. String name,
  2. String? path, {
  3. HiveCipher? key,
  4. Future<BoxCollection> collectionFactory(
    1. String name,
    2. Set<String> boxNames, {
    3. HiveCipher? key,
    4. String? path,
    }) = BoxCollection.open,
})

Implementation

HiveCollectionsDatabase(
  this.name,
  this.path, {
  this.key,
  this.collectionFactory = BoxCollection.open,
});