max method

Returns the maximum of this and other.

Implementation

ByteConverter max(ByteConverter other) {
  return _bytes >= other.bytes ? ByteConverter(_bytes) : other;
}