parseOffset16List method

dynamic parseOffset16List(
  1. dynamic count
)

// Parsing lists and records ///////////////////////////////

Implementation

// Parse a list of 16 bit unsigned integers. The length of the list can be read on the stream
// or provided as an argument.


parseOffset16List(count) {
  return parseUShortList(count);
}