Error: [AsyncStorage] Passing null/undefined as value is not supported. If you want to remove value, Use .remove method instead. code example
Example: how to remove item from asyncstorage
async removeItemValue(key) {
try {
await AsyncStorage.removeItem(key);
return true;
}
catch(exception) {
return false;
}
}