ChallengeLeaderboardEntryModel constructor

ChallengeLeaderboardEntryModel({
  1. required String odellId,
  2. String? companyName,
  3. required int totalXp,
  4. required int rank,
})

Implementation

ChallengeLeaderboardEntryModel({
  required this.odellId,
  this.companyName,
  this.companyLogo,
  required this.totalXp,
  required this.rank,
});