HTError.outsideThis constructor
HTError.outsideThis({})
Error: This appeared outside of a function.
Implementation
HTError.outsideThis(
{String? extra,
String? correction,
String? filename,
int? line,
int? column,
int? offset,
int? length})
: this(ErrorCode.outsideThis, ErrorType.compileTimeError,
message: HTLocale.current.errorOutsideThis,
extra: extra,
correction: correction,
filename: filename,
line: line,
column: column,
offset: offset,
length: length);