storageCollectionDeleteWhere<T> function

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

Delete an item from a collection in the storage class.

Implementation

Future<void> storageCollectionDeleteWhere<T>(
  String key,
  bool Function(T where) value,
) async {
  await NyStorage.deleteFromCollectionWhere<T>(value, key: key);
}