copyWith method
Implementation
@override
InputMessageGame copyWith({
int? botUserId,
String? gameShortName,
}) =>
InputMessageGame(
botUserId: botUserId ?? this.botUserId,
gameShortName: gameShortName ?? this.gameShortName,
);