static Future<bool>? putString(String key, String value) { if (_preferences == null) return null; return _preferences?.setString(key, value); }