ParsingException<Token> constructor

const ParsingException<Token>({
  1. required String message,
  2. required Token token,
})

Implementation

const ParsingException({
  required this.message,
  required this.token,
});