readTo method

int readTo(
  1. BytesBuffer dst, [
  2. int? length
])

Reads length bytes into dst.

Implementation

int readTo(BytesBuffer dst, [int? length]) {
  length ??= remaining;
  final bytesIO2 = dst.bytesIO;
  final pos = bytesIO2.position;
  bytesIO2.ensureCapacity(pos + length);
  return bytesIO.readTo(bytesIO2, length);
}