chatActionStartPlayingGame property
The user has started to play a game
Implementation
ChatActionStartPlayingGame? get chatActionStartPlayingGame {
if (this is ChatActionStartPlayingGame) {
return this as ChatActionStartPlayingGame;
}
return null;
}