UserSkill constructor
UserSkill({
- required Skill skill,
- List<
CoursePoint> courses = const [], - List<
ResourcePoint> resources = const [], - required int totalPoints,
- double? percentile,
Returns a new UserSkill instance.
Implementation
UserSkill({
required this.skill,
this.courses = const [],
this.resources = const [],
required this.totalPoints,
this.percentile,
});