containsSame method
Returns true if this set contains attribute with the same value as
attribute.
Implementation
bool containsSame(NotusAttribute attribute) {
assert(attribute != null);
return get<dynamic>(attribute) == attribute;
}
Returns true if this set contains attribute with the same value as
attribute.
bool containsSame(NotusAttribute attribute) {
assert(attribute != null);
return get<dynamic>(attribute) == attribute;
}