contains method

  1. @override
bool contains(
  1. Object? element
)
override

Returns true if the set contains the given element.

This is a non-mutating query operation.

Implementation

@override
bool contains(Object? element) => value.contains(element);