HTError.definedImportSymbol constructor

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

Error: A same name declaration is already existed.

Implementation

HTError.definedImportSymbol(String id, String from, String exist,
    {String? extra,
    String? correction,
    String? filename,
    int? line,
    int? column,
    int? offset,
    int? length})
    : this(HTErrorCode.defined, HTErrorType.runtimeError,
          message: HTLocale.current.errorDefinedImportSymbol,
          interpolations: [id, from, exist],
          extra: extra,
          correction: correction,
          filename: filename,
          line: line,
          column: column,
          offset: offset,
          length: length);