readUInt8 function

int readUInt8(
  1. List<int> b,
  2. int idx
)

Implementation

int readUInt8(List<int> b, int idx) {
  return b[idx];
}