HTContext constructor

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

Implementation

HTContext({
  this.file,
  this.module,
  this.namespace,
  this.ip,
  this.line,
  this.column,
});