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