Future<void> setInt(String key, int value) async { await _ensureInitialized(); final box = _getBoxForKey(key); await box.put(key, value); }