writeLeb128Block method

int writeLeb128Block(
  1. List<int> block
)

Writes a LEB128 bytes block.

Implementation

int writeLeb128Block(List<int> block) {
  writeLeb128UnsignedInt(block.length);
  return writeAll(block);
}