containsSame method

bool containsSame(
  1. NotusAttribute attribute
)

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;
}