ComponentDescriptor constructor

const ComponentDescriptor({
  1. required String name,
  2. required String description,
  3. required String category,
  4. required List<String> files,
  5. required List<ComponentDependency> dependencies,
  6. required Map<String, String> templates,
})

Implementation

const ComponentDescriptor({
  required this.name,
  required this.description,
  required this.category,
  required this.files,
  required this.dependencies,
  required this.templates,
});