CfiSyntaxException constructor

const CfiSyntaxException(
  1. List<String> expected,
  2. String? found,
  3. int offset,
  4. int line,
  5. int column,
)

Implementation

const CfiSyntaxException(
  this.expected,
  this.found,
  this.offset,
  this.line,
  this.column,
);