removeAll method

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

Implementation

Future<void> removeAll(List<String> keys) async {
  for (final key in keys) {
    await remove(key);
  }
}