listTournamentRecordsAroundOwner abstract method

Future<TournamentRecordList> listTournamentRecordsAroundOwner({
  1. required Session session,
  2. required String tournamentId,
  3. required String ownerId,
  4. int? expiry,
  5. int limit = defaultLimit,
})

Listing records around a user**

Similarly to leaderboards, Sagi-shi players can get other player scores around them.

Implementation

Future<model.TournamentRecordList> listTournamentRecordsAroundOwner({
  required model.Session session,
  required String tournamentId,
  required String ownerId,
  int? expiry,
  int limit = defaultLimit,
});