bool scanChar()

in lib/src/string_scanner.dart [94:99]


  bool scanChar(int character) {
    if (isDone) return false;
    if (string.codeUnitAt(_position) != character) return false;
    _position++;
    return true;
  }