Updates an existing key with a new int value.
Future<void> updateInt(String key, int newValue) async { _assertExists(key); await setInt(key, newValue); }