UserRank constructor

UserRank({
  1. required String rank,
  2. required String percentile,
  3. required double averageTripScore,
  4. required int? totalCount,
})

Implementation

UserRank(
    {required this.rank,
    required this.percentile,
    required this.averageTripScore,
    required this.totalCount});