HTError.stringInterpolation constructor
HTError.stringInterpolation({})
Error: String interpolation has to be a single expression.
Implementation
HTError.stringInterpolation(
{String? extra,
String? correction,
String? filename,
int? line,
int? column,
int? offset,
int? length})
: this(ErrorCode.stringInterpolation, ErrorType.syntacticError,
message: HTLocale.current.errorStringInterpolation,
extra: extra,
correction: correction,
filename: filename,
line: line,
column: column,
offset: offset,
length: length);