resetAll method
Implementation
Future<bool> resetAll(String acknowledge) {
if (_box == null || !_box!.isOpen) {
dev.log("Hive box was not initialized!");
return Future.value(false);
}
return _box!.clear().then((_) => true).catchError((_) => false);
}