deleteCollection static method

Future deleteCollection(
  1. String key, {
  2. bool andFromBackpack = false,
})

Deletes a collection from the given key.

Implementation

static Future deleteCollection(String key,
    {bool andFromBackpack = false}) async {
  await delete(key, andFromBackpack: andFromBackpack);
}