Removes the values stored under a set of keys from this stash
keys
Future<void> removeAll(Set<String> keys) { return Future.wait(keys.map((key) => remove(key))).then((value) => null); }