copyWith method
InputInlineQueryResultGame
copyWith({
- String? id,
- String? gameShortName,
- ReplyMarkup? replyMarkup,
override
Implementation
@override
InputInlineQueryResultGame copyWith({
String? id,
String? gameShortName,
ReplyMarkup? replyMarkup,
}) => InputInlineQueryResultGame(
id: id ?? this.id,
gameShortName: gameShortName ?? this.gameShortName,
replyMarkup: replyMarkup ?? this.replyMarkup,
);