Tag constructor

Tag(
  1. String name,
  2. int lineNumber, {
  3. bool isInherited = false,
})

Implementation

Tag(
  this.name,
  this.lineNumber, {
  this.isInherited = false,
});