Skill constructor

Skill({
  1. required int id,
  2. required String name,
})

Returns a new Skill instance.

Implementation

Skill({
  required this.id,
  required this.name,
});