SkillInfo constructor

SkillInfo({
  1. required int id,
  2. required int courseCount,
  3. required int userCount,
  4. required int totalPoints,
  5. required double averagePoints,
  6. String? name,
})

Returns a new SkillInfo instance.

Implementation

SkillInfo({
  required this.id,
  required this.courseCount,
  required this.userCount,
  required this.totalPoints,
  required this.averagePoints,
  this.name,
});