HTError.unexpectedEmptyList constructor

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

Error: Type arguments is emtpy brackets.

Implementation

HTError.unexpectedEmptyList(String listName,
    {String? extra,
    String? correction,
    String? filename,
    int? line,
    int? column,
    int? offset,
    int? length})
    : this(ErrorCode.unexpectedEmptyList, ErrorType.syntacticError,
          message: HTLocale.current.errorUnexpectedEmptyList,
          interpolations: [listName],
          extra: extra,
          correction: correction,
          filename: filename,
          line: line,
          column: column,
          offset: offset,
          length: length);