readArrayCount static method

List readArrayCount(
  1. Uint8List buffer,
  2. ISerializable FactoryClass,
  3. int count, [
  4. dynamic accessor,
])

Implementation

static List readArrayCount(Uint8List buffer, ISerializable FactoryClass, int count, [dynamic accessor]) =>
    readArrayImpl(buffer, FactoryClass, accessor, (index, _) => count > index);