Lexeme constructor

Lexeme({
  1. required LexemeType type,
  2. required String str,
  3. required int start,
  4. required int end,
})

Implementation

Lexeme({
  required this.type,
  required this.str,
  required this.start,
  required this.end,
});