VarInt.fromBuffer constructor

VarInt.fromBuffer(
  1. List<int> buf
)

Implementation

factory VarInt.fromBuffer(List<int> buf) {
  return new VarInt().fromBuffer(buf);
}