contains method

  1. @override
bool contains(
  1. covariant T? element
)
override

Returns true if the collection contains an element equal to element, false otherwise.

Implementation

@override
bool contains(covariant T? element) {
  _count();
  return _s.contains(element);
}