UserSkillPointsPercentile constructor

UserSkillPointsPercentile({
  1. required String username,
  2. required double totalPoints,
  3. required double percentile,
})

Returns a new UserSkillPointsPercentile instance.

Implementation

UserSkillPointsPercentile({
  required this.username,
  required this.totalPoints,
  required this.percentile,
});