listTournamentRecords abstract method

Future<TournamentRecordList> listTournamentRecords({
  1. required Session session,
  2. required String tournamentId,
  3. Iterable<String>? ownerIds,
  4. int? expiry,
  5. int limit = defaultLimit,
  6. String? cursor,
})

Listing records

Players can list tournament records.

Implementation

Future<model.TournamentRecordList> listTournamentRecords({
  required model.Session session,
  required String tournamentId,
  Iterable<String>? ownerIds,
  int? expiry,
  int limit = defaultLimit,
  String? cursor,
});