Component constructor
Component({
- required String name,
- required String description,
- required List<
ComponentFile> files, - List<
ComponentDependency> ? dependencies, - String? importPath,
- String? usageExample,
Implementation
Component({
required this.name,
required this.description,
required this.files,
this.dependencies,
this.importPath,
this.usageExample,
});