contains method

bool contains(
  1. int value
)

Returns true if this array contains the specified byte.

value the byte to search for

Implementation

bool contains(int value) {
  return _bytes.contains(value);
}