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