Element constructor

Element(
  1. ElementKind kind,
  2. String name,
  3. int flags, {
  4. Location? location,
  5. String? parameters,
  6. String? returnType,
  7. String? typeParameters,
  8. String? aliasedType,
})

Implementation

Element(
  this.kind,
  this.name,
  this.flags, {
  this.location,
  this.parameters,
  this.returnType,
  this.typeParameters,
  this.aliasedType,
});