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