readBytes method

InputBuffer readBytes(
  1. int count
)

Read count bytes from the stream.

Implementation

InputBuffer readBytes(int count) {
  final bytes = subset(count);
  offset += bytes.length;
  return bytes;
}