HTError.argType constructor

HTError.argType(
  1. String id,
  2. String assignType,
  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: Arguments type check failed.

Implementation

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