copyWith method

InlineQueryResultGame copyWith({
  1. String? id,
  2. String? gameShortName,
  3. 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,
  );
}