ElementDeclaration constructor

ElementDeclaration(
  1. String name,
  2. ElementKind kind,
  3. int fileIndex,
  4. int offset,
  5. int line,
  6. int column,
  7. int codeOffset,
  8. int codeLength, {
  9. String? className,
  10. String? mixinName,
  11. String? parameters,
})

Implementation

ElementDeclaration(this.name, this.kind, this.fileIndex, this.offset,
    this.line, this.column, this.codeOffset, this.codeLength,
    {this.className, this.mixinName, this.parameters});