take method

KeytabToken? take()

Implementation

KeytabToken? take() {
  final result = peek();
  _pos += 1;
  return result;
}