contains method
Implementation
@override
bool contains(Object? object) {
if (object is! V) {
return false;
}
return _getNode(object) != null;
}
@override
bool contains(Object? object) {
if (object is! V) {
return false;
}
return _getNode(object) != null;
}