DocNode constructor
DocNode({
- required String kind,
- required String name,
- String? declarationKind,
- NamespaceDef? namespaceDef,
- InterfaceDef? interfaceDef,
- ClassDef? classDef,
- dynamic variableDef,
- dynamic functionDef,
- dynamic enumDef,
- dynamic typeAliasDef,
- 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,
});