chatActionStartPlayingGame property

ChatActionStartPlayingGame? chatActionStartPlayingGame

The user has started to play a game

Implementation

ChatActionStartPlayingGame? get chatActionStartPlayingGame {
  if (this is ChatActionStartPlayingGame) {
    return this as ChatActionStartPlayingGame;
  }
  return null;
}