VarInt.fromNumber constructor

VarInt.fromNumber(
  1. int n
)

Implementation

factory VarInt.fromNumber(int n) {
  return new VarInt().fromNumber(n);
}