peek method

KeytabToken? peek()

Implementation

KeytabToken? peek() {
  if (done) return null;
  return tokens[_pos];
}