HTError.unresolvedNamedStruct constructor

HTError.unresolvedNamedStruct(
  1. String id, {
  2. String? filename,
  3. int? line,
  4. int? column,
  5. int? offset,
  6. int? length,
})

Error: Unevalable source type.

Implementation

HTError.unresolvedNamedStruct(String id,
    {String? filename, int? line, int? column, int? offset, int? length})
    : this(ErrorCode.unresolvedNamedStruct, ErrorType.runtimeError,
          message: HTLocale.current.errorUnresolvedNamedStruct,
          interpolations: [id],
          filename: filename,
          line: line,
          column: column,
          offset: offset,
          length: length);