DocNode constructor

DocNode({
  1. required String kind,
  2. required String name,
  3. String? declarationKind,
  4. NamespaceDef? namespaceDef,
  5. InterfaceDef? interfaceDef,
  6. ClassDef? classDef,
  7. dynamic variableDef,
  8. dynamic functionDef,
  9. dynamic enumDef,
  10. dynamic typeAliasDef,
  11. dynamic importDef,
})

Implementation

DocNode({
  required this.kind,
  required this.name,
  this.declarationKind,
  this.namespaceDef,
  this.interfaceDef,
  this.classDef,
  this.variableDef,
  this.functionDef,
  this.enumDef,
  this.typeAliasDef,
  this.importDef,
});