InternalLinkTypeGame constructor

const InternalLinkTypeGame({
  1. required String botUsername,
  2. required String gameShortName,
  3. dynamic extra,
  4. int? clientId,
})

The link is a link to a game. Call searchPublicChat with the given bot username, check that the user is a bot, ask the current user to select a chat to send the game, and then call sendMessage with inputMessageGame

Implementation

const InternalLinkTypeGame({
  required this.botUsername,
  required this.gameShortName,
  this.extra,
  this.clientId,
});