SchemaParseError constructor

const SchemaParseError(
  1. String message, {
  2. int? line,
  3. int? column,
})

Creates a parse error.

Implementation

const SchemaParseError(this.message, {this.line, this.column});