SetInlineGameScore constructor

const SetInlineGameScore({
  1. required String inlineMessageId,
  2. required bool editMessage,
  3. required int userId,
  4. required int score,
  5. required bool force,
})

Updates the game score of the specified user in a game; for bots only

Implementation

const SetInlineGameScore({
  required this.inlineMessageId,
  required this.editMessage,
  required this.userId,
  required this.score,
  required this.force,
});