removeMany static method

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

Implementation

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