storageCollectionDeleteWhere<T> function

Future storageCollectionDeleteWhere<T>(
  1. String key,
  2. bool value(
    1. T where
    )
)

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);
}