copyWith method
Implementation
@override
InlineQueryResultPhoto copyWith({
  String? id,
  Photo? photo,
  String? title,
  String? description,
}) => InlineQueryResultPhoto(
  id: id ?? this.id,
  photo: photo ?? this.photo,
  title: title ?? this.title,
  description: description ?? this.description,
);