Updates an existing key with a new bool value.
Future<void> updateBool(String key, {required bool newValue}) async { _assertExists(key); await setBool(key, value: newValue); }