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