Returns the hash code for this Byte.
@override int get hashCode { int hash = 0; for (final byte in _bytes) { hash = hash * 31 + byte.hashCode; } return hash; }