contains method

bool contains(
  1. T value
)

Whether the _value contains value.

Implementation

bool contains(T value) => _value.contains(value);