closeBoxes method
Closes storage containers.
Implementation
Future<void> closeBoxes() async {
await _keyBox!.close();
await _credentialBox!.close();
await _configBox!.close();
await _connection!.close();
await _issuingHistory!.close();
await _exchangeHistory!.close();
await _didcommConversations!.close();
}