readTag method

(int, int) readTag()

Implementation

(int, int) readTag() {
  final raw = readRawVarint();
  return (raw >> 3, raw & 0x07);
}