TomlParserException constructor

TomlParserException({
  1. required String message,
  2. required String source,
  3. required int offset,
})

Creates a parser exception with the given message, source code and offset within the source code.

Implementation

TomlParserException({
  required this.message,
  required this.source,
  required this.offset,
});