SecureStore get value from Android native

Expo: 41
Platform: Android

How to get Saved key-value from Expo.SecureStore in Android SharedPreferences?
If I save data with key “myData”, what key I should use to get data in getSharedPreferences(“key”)
and prefs.getString(‘key’)

Thanks to no one.
I found answer when found info about Device file explorer
In File explorer we have folder for App and inside this we can see file SecureStore

in shared preferences we type “SecureStore” and then getString(“myKey”)

Vuola