リファレンスSDKpreferenceslistこのページの見出しlist 保存されているすべてのプリファレンスキー名を返します。 パラメータ なし。 戻り値 Promise<string[]> 例 const keys = await preferences.list();console.log(`${keys.length} 個のプリファレンスが保存されています`);for (const key of keys) { const value = await preferences.load(key); console.log(`${key}:`, value);}