copyWith method
InlineQueryResultGame
copyWith({
- String? id,
- String? gameShortName,
- InlineKeyboardMarkup? replyMarkup,
Copy method
Implementation
InlineQueryResultGame copyWith({
String? id,
String? gameShortName,
InlineKeyboardMarkup? replyMarkup,
}) {
return InlineQueryResultGame(
id: id ?? this.id,
gameShortName: gameShortName ?? this.gameShortName,
replyMarkup: replyMarkup ?? this.replyMarkup,
);
}