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