HTError.unsupported constructor
HTError.unsupported(})
Error: unsupported runtime operation
Implementation
HTError.unsupported(String name,
{String? extra,
String? correction,
String? filename,
int? line,
int? column,
int? offset,
int? length})
: this(ErrorCode.unsupported, ErrorType.syntacticError,
message: HTLocale.current.errorUnsupported,
interpolations: [name],
extra: extra,
correction: correction,
filename: filename,
line: line,
column: column,
offset: offset,
length: length);