NiceLeaderboardEntry constructor

const NiceLeaderboardEntry({
  1. required String name,
  2. required double score,
  3. ImageProvider<Object>? avatar,
  4. String? subtitle,
})

Implementation

const NiceLeaderboardEntry({
  required this.name,
  required this.score,
  this.avatar,
  this.subtitle,
});