how to remove item from asyncstorage

Solutions on MaxInterview for how to remove item from asyncstorage by the best coders in the world

showing results for - "how to remove item from asyncstorage"
Elisa
04 Jul 2019
1async removeItemValue(key) {
2    try {
3        await AsyncStorage.removeItem(key);
4        return true;
5    }
6    catch(exception) {
7        return false;
8    }
9}