max method
Returns the maximum of this and other.
Implementation
ByteConverter max(ByteConverter other) {
return _bytes >= other.bytes ? ByteConverter(_bytes) : other;
}
Returns the maximum of this and other.
ByteConverter max(ByteConverter other) {
return _bytes >= other.bytes ? ByteConverter(_bytes) : other;
}