ContainsNot constructor

ContainsNot({
  1. required String key,
  2. required dynamic value,
})

Checks if the element in question implements a constains function and if given function returns false for value. If value is iterable it will check for each element

Implementation

ContainsNot({required String key, required value})
    : super(key: key, value: value);