storageCollectionDeleteWhere<T> function
Delete an item from a collection in the storage class.
Implementation
Future storageCollectionDeleteWhere<T>(
String key, bool Function(T where) value) async {
return await NyStorage.deleteFromCollectionWhere<T>(value, key: key);
}