removeMany method

Removes multiple objects specified by keys with optional StorageRemoveManyOptions, and returns a StorageRemoveManyOperation.

Implementation

StorageRemoveManyOperation removeMany({
  required List<String> keys,
  StorageRemoveManyOptions? options,
}) {
  return identifyCall(
    StorageCategoryMethod.removeMany,
    () => defaultPlugin.removeMany(
      keys: keys,
      options: options,
    ),
  );
}