storageCollectionDeleteWhere<T> function
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);
}