fromBuffer method

VarInt fromBuffer(
  1. List<int> buf
)

Implementation

VarInt fromBuffer(List<int> buf) {
  this.buf = buf;
  return this;
}