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