BoxxHelper constructor
BoxxHelper({
- required EncryptionMode? mode,
- String? encryptionKey,
Boxx setup for web
Implementation
BoxxHelper({required this.mode, this.encryptionKey}) {
try {
_initDB();
} on Exception catch (e) {
debugPrint(e.toString());
}
}