HTError.unsupported constructor

HTError.unsupported(
  1. String name,
  2. String version, {
  3. String? extra,
  4. String? correction,
  5. String? filename,
  6. int? line,
  7. int? column,
  8. int? offset,
  9. int? length,
})

Error: unsupported runtime operation

Implementation

HTError.unsupported(String name, String version,
    {String? extra,
    String? correction,
    String? filename,
    int? line,
    int? column,
    int? offset,
    int? length})
    : this(HTErrorCode.unsupported, HTErrorType.syntacticError,
          message: HTLocale.current.errorUnsupported,
          interpolations: [name, version],
          extra: extra,
          correction: correction,
          filename: filename,
          line: line,
          column: column,
          offset: offset,
          length: length);