HTError.undefinedOperator constructor
HTError.undefinedOperator(})
Error: Unknown operator.
Implementation
HTError.undefinedOperator(String id, String op,
{String? extra,
String? correction,
String? filename,
int? line,
int? column,
int? offset,
int? length})
: this(ErrorCode.undefinedOperator, ErrorType.runtimeError,
message: HTLocale.current.errorUndefinedOperator,
interpolations: [id, op],
extra: extra,
correction: correction,
filename: filename,
line: line,
column: column,
offset: offset,
length: length);