GetGameHighScores constructor

const GetGameHighScores({
  1. required int chatId,
  2. required int messageId,
  3. required int userId,
})

GetGameHighScores (getGameHighScores) - TDLib function

Returns the high scores for a game and some part of the high score table in the range of the specified user; for bots only.

  • chatId: The chat that contains the message with the game.
  • messageId: Identifier of the message.
  • userId: User identifier.

GameHighScores is returned on completion.

Implementation

const GetGameHighScores({
  required this.chatId,
  required this.messageId,
  required this.userId,
});