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