openBox<B> method

Future<Box<B>> openBox<B>(
  1. String name
)

Implementation

Future<Box<B>> openBox<B>(String name) async {
  return await hive.openBox<B>(name, encryptionCipher: encryptionCipher);
}