ElementAst constructor
      
      ElementAst(
    
    
- String name,
- List<AttrAst> attrs,
- List<BoundElementPropertyAst> inputs,
- List<BoundEventAst> outputs,
- List<ReferenceAst> references,
- List<DirectiveAst> directives,
- List<ProviderAst> providers,
- ElementProviderUsage? elementProviderUsage,
- List<TemplateAst> children,
- int? ngContentIndex,
- SourceSpan sourceSpan,
- List<CssSelector> matchedNgContentSelectors, {
- bool skipOnPushValidation = false,
- String skipSchemaValidationForSelector = '',
- Set<String> attributeDeps = const {},
Implementation
ElementAst(
  this.name,
  this.attrs,
  this.inputs,
  this.outputs,
  this.references,
  this.directives,
  this.providers,
  this.elementProviderUsage,
  this.children,
  this.ngContentIndex,
  this.sourceSpan,
  this.matchedNgContentSelectors, {
  this.skipOnPushValidation = false,
  this.skipSchemaValidationForSelector = '',
  this.attributeDeps = const {},
});