HTContext constructor

HTContext({
  1. String? filename,
  2. String? moduleName,
  3. HTNamespace? namespace,
  4. int? ip,
  5. int? line,
  6. int? column,
})

Implementation

HTContext({
  this.filename,
  this.moduleName,
  this.namespace,
  this.ip,
  this.line,
  this.column,
});