writeShortList method

void writeShortList(
  1. Int16List v
)
inherited

Implementation

void writeShortList(Int16List v) {
  writeSize(v.length);
  v.forEach((i) => writeShort(i));
}