🔧 SDK ReferenceManagersStorageManagerPersistentStoreManagergetgetGets a value from the store.Syntaxstore.get(key);ParametersNameTypeDescriptionkeystringThe key of the value to get.ReturnsPromise<any> - A promise that resolves with the value.Exampleconst score = await store.get('player1');console.log('Player 1 score:', score);Available on: Client Server