SkillInfo constructor

SkillInfo({
  1. required String name,
  2. required String category,
  3. required String description,
  4. required String path,
  5. bool isBuiltIn = false,
})

Implementation

SkillInfo({
  required this.name,
  required this.category,
  required this.description,
  required this.path,
  this.isBuiltIn = false,
});