getMyObject = async () => { try { const jsonValue = await AsyncStorage.getItem('@key') return jsonValue != null ? JSON.parse(jsonValue) : null } catch(e) { // read error } console.log('Done.') }