Close the history box
Future<void> closeHistoryBox({ String? pw, }) async { await _ensureInit(pw: pw); if (Hive.isBoxOpen('history')) { await Hive.box('history').close(); } }