advance method

LatexToken? advance()

Implementation

LatexToken? advance() {
  final token = peek();
  _position++;
  return token;
}