*[<Null safety>](https://dart.dev/null-safety)*
PropertyMatcher propertyNotEquals (String name, dynamic val)
Checks that a property of this node exists but does not equal the given value.
Implementation
PropertyMatcher propertyNotEquals(String name, dynamic val) {
return property(name)..notEquals(val);
}