copyWith method

InputInlineQueryResultGame copyWith({
  1. String? id,
  2. String? gameShortName,
  3. ReplyMarkup? replyMarkup,
})

Implementation

InputInlineQueryResultGame copyWith({
  String? id,
  String? gameShortName,
  ReplyMarkup? replyMarkup,
}) => InputInlineQueryResultGame(
  id: id ?? this.id,
  gameShortName: gameShortName ?? this.gameShortName,
  replyMarkup: replyMarkup ?? this.replyMarkup,
);