HTError.assignType constructor

HTError.assignType(
  1. String id,
  2. String valueType,
  3. String declValue, {
  4. String? extra,
  5. String? correction,
  6. String? filename,
  7. int? line,
  8. int? column,
  9. int? offset,
  10. int? length,
})

Error: Type check failed.

Implementation

HTError.assignType(String id, String valueType, String declValue,
    {String? extra,
    String? correction,
    String? filename,
    int? line,
    int? column,
    int? offset,
    int? length})
    : this(ErrorCode.assignType, ErrorType.staticTypeWarning,
          message: HTLocale.current.errorAssignType,
          interpolations: [id, valueType, declValue],
          extra: extra,
          correction: correction,
          filename: filename,
          line: line,
          column: column,
          offset: offset,
          length: length);