HTError.outOfRange constructor
HTError.outOfRange(})
Error: Calling method on null object.
Implementation
HTError.outOfRange(int index, int range,
{String? extra,
String? correction,
String? filename,
int? line,
int? column,
int? offset,
int? length})
: this(ErrorCode.outOfRange, ErrorType.runtimeError,
message: HTLocale.current.errorOutOfRange,
interpolations: [index, range],
extra: extra,
correction: correction,
filename: filename,
line: line,
column: column,
offset: offset,
length: length);