deleteUser method
Implementation
@override
Future<void> deleteUser() async {
final storedKey =
_clientInstanceIdToUserIdentifierBox.get(_clientInstanceKey);
await _clientInstanceIdToUserIdentifierBox.delete(_clientInstanceKey);
if (storedKey != null) {
await _box.delete(storedKey);
}
}