HTError.undefined constructor
HTError.undefined(})
Error: Try to use a undefined variable.
Implementation
HTError.undefined(String id,
{String? extra,
String? correction,
String? filename,
int? line,
int? column,
int? offset,
int? length})
: this(ErrorCode.undefined, ErrorType.runtimeError,
message: HTLocale.current.errorUndefined,
interpolations: [id],
extra: extra,
correction: correction,
filename: filename,
line: line,
column: column,
offset: offset,
length: length);