contains method

bool contains(
  1. Object? value
)

Implementation

bool contains(Object? value) {
  return this.value.contains(value);
}