decodeVarUInt7 static method

dynamic decodeVarUInt7(
  1. int b0
)

Decodes a varUInt7.

Implementation

static decodeVarUInt7(int b0) {
  final int decoded = b0 & 0x7F;
  return decoded;
}