Returns true if the collection contains an element equal to element, false otherwise.
true
element
false
@override bool contains(covariant T? element) { _count(); return _s.contains(element); }