operator + method

ByteArray operator +(
  1. ByteArray other
)

Appends other to this

Implementation

ByteArray operator + (ByteArray other) =>
  ByteArray(length + other.length)
    ..writeBytes(this)
    ..writeBytes(other);