Lexeme constructor
Lexeme({
- required LexemeType type,
- required String str,
- required int start,
- required int end,
Implementation
Lexeme({
required this.type,
required this.str,
required this.start,
required this.end,
});