DocComponent.meta constructor
Implementation
factory DocComponent.meta({required String name, required String description, String? filePath}) {
return DocComponent(
name: name,
type: DocComponentType.metaType,
description: description,
constructors: const [],
properties: const [],
methods: const [],
filePath: filePath,
);
}