HTError.notCallable constructor
HTError.notCallable(})
Error: Object is not callable.
Implementation
HTError.notCallable(String id,
{String? extra,
String? correction,
String? filename,
int? line,
int? column,
int? offset,
int? length})
: this(ErrorCode.notCallable, ErrorType.runtimeError,
message: HTLocale.current.errorNotCallable,
interpolations: [id],
extra: extra,
correction: correction,
filename: filename,
line: line,
column: column,
offset: offset,
length: length);