removeAll method

Future<void> removeAll(
  1. Set<String> keys
)

Removes the values stored under a set of keys from this stash

  • keys: the set of keys to remove

Implementation

Future<void> removeAll(Set<String> keys) {
  return Future.wait(keys.map((key) => remove(key))).then((value) => null);
}