TournamentRecordList constructor

const TournamentRecordList({
  1. required List<LeaderboardRecord> records,
  2. required List<LeaderboardRecord> ownerRecords,
  3. String? nextCursor,
  4. String? previousCursor,
})

Implementation

const factory TournamentRecordList({
  required List<LeaderboardRecord> records,
  required List<LeaderboardRecord> ownerRecords,
  String? nextCursor,
  String? previousCursor,
}) = _TournamentRecordList;