static multiRemove(keys, callback?) 
Delete all the keys in the keys array. Returns a Promise object.
Example:
let keys = ['k1', 'k2'];
AsyncStorage.multiRemove(keys, (err) => {
  // keys k1 & k2 removed, if they existed
  // do most stuff after removal (if you want)
});