contains method

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

true if the Results collection contains the specified element.

Implementation

@override
bool contains(covariant T element) => _indexOf(element, 0, 'contains') >= 0;