UserSkill constructor

UserSkill({
  1. required Skill skill,
  2. List<CoursePoint> courses = const [],
  3. List<ResourcePoint> resources = const [],
  4. required int totalPoints,
  5. double? percentile,
})

Returns a new UserSkill instance.

Implementation

UserSkill({
  required this.skill,
  this.courses = const [],
  this.resources = const [],
  required this.totalPoints,
  this.percentile,
});