deleteAll abstract method

Future<void> deleteAll(
  1. Iterable keys, {
  2. bool notify = true,
})

Deletes all the given keys from the box.

If a key does not exist, it is skipped.

Implementation

Future<void> deleteAll(
  Iterable<dynamic> keys, {
  bool notify = true,
});