copyWith method

InlineQueryResultGame copyWith({
  1. String? id,
  2. Game? game,
})

Implementation

InlineQueryResultGame copyWith({String? id, Game? game}) =>
    InlineQueryResultGame(id: id ?? this.id, game: game ?? this.game);