DocComponent constructor
const
DocComponent({
- required String name,
- required String description,
- required List<
DocConstructor> constructors, - required List<
DocProperty> properties, - required List<
DocMethod> methods, - String? filePath,
- String? entryPoint,
- DocComponentType type = DocComponentType.classType,
- String? aliasedType,
- List<
String> annotations = const [], - List<
String> superClasses = const [], - List<
String> superClassPackages = const [], - List<
String> interfaces = const [], - List<
String> mixins = const [], - List<
String> typeParameters = const [],
Implementation
const DocComponent({
required this.name,
required this.description,
required this.constructors,
required this.properties,
required this.methods,
this.filePath,
this.entryPoint,
this.type = DocComponentType.classType,
this.aliasedType,
this.annotations = const [],
this.superClasses = const [],
this.superClassPackages = const [],
this.interfaces = const [],
this.mixins = const [],
this.typeParameters = const [],
});