delete static method
Deletes associated value for the given key
.
Implementation
static Future delete(String key, {bool andFromBackpack = false}) async {
if (andFromBackpack == true) {
Backpack.instance.delete(key);
}
return await manager().delete(key: key);
}